...
SetForegroundColor(color As Integer) As Boolean
Sets the foreground color in ARGB format. Hex color values should be converted to integers before being passed to this method (e.g. the value &hFFFFFFFF
should be passed as 4294967295). You can use the HexToInteger()
method (available in the core library extension) to convert a hex string to an integer.
SetBackgroundColor(color As Integer) As Boolean
Sets the background color in ARGB format. Hex color values should be converted to integers before being passed to this method (e.g. the value &hFFFFFFFF
should be passed as 4294967295). You can use the HexToInteger()
method (available in the core library extension) to convert a hex string to an integer.
Note | ||
---|---|---|
| ||
The top 8 bits of the |
SetFont(font_filename As String) As Boolean
...