This class represents a font used for drawing or displaying text in controls.
Example:
You need a form and a textarea to get the example going
PUBLIC SUB Form_Open() Form1.Font.Name = "Utopia" Form1.Font.Bold = TRUE Form1.Font.Italic = TRUE Form1.Font.Size = "24" Form1.Font.StrikeOut = FALSE Form1.Font.Underline = TRUE END
This class is creatable.
DIM hFont AS Font hFont = NEW Font ( [ Font AS String ] ) |
This class acts like a read-only array.
DIM hFont AS Font hFont = Font [ Font AS String ] |