Progress SET FONT SIZES ( sizeTitles {; sizeMessages {; sizeButtons}} )
Parameter | Type | Description | |
---|---|---|---|
sizeTitles | Longint | ⬅️ | Size of font for titles |
sizeMessages | Longint | ⬅️ | Size of font for messages |
sizeButtons | Longint | ⬅️ | (Windows) Size of font for Stop buttons |
The Progress SET FONT SIZES method changes the font size used for the different text displayed in all the progress windows.
In the sizeTitles, sizeMessages and sizeButtons parameters, pass the font sizes to use. If you do not want to modify a size, pass -1 in the corresponding parameter.
We want to change the size only for messages:
Progress SET FONT SIZES(-1;13)
We want to change the size of titles and messages:
Progress SET FONTS("Arial Black";"Arial narrow")
Progress SET FONT SIZES(13;12)