TextFont property

From Xojo Documentation

(Redirected from ReportField.TextFont)
Property (As String )
a<See Below>.TextFont = newStringValue
or
StringValue = a<See Below>.TextFont

Supported for all project types and targets.

Name of the font used to display the caption or text content.

Notes

You can enter any font that is installed on the computer or the names of the two metafonts, "System" and "SmallSystem".

The System font is the font used by the system software as its default font. Different operating systems use different default fonts. If the system software supports both a large and small System font, you can also specify the "SmallSystem" font as your TextFont.

On Macintosh, "SmallSystem" specifies the OS's smaller system font and may make the control smaller in size as well. On Windows and Linux, "SmallSystem" is the same as "System".

Classes implementing the TextFont property

BevelButton
Checkbox
Label
Graphics
GroupBox
ListBox
PopupMenu
PushButton
RadioButton
StringShape
TextEdit
ReportField

Sample Code

This code sets the TextFont property.

Me.TextFont = "Helvetica"