Sets the font for a control.
GUICtrlSetFont ( controlID, size [, weight [, attribute [, fontname [, quality]]]] )
| controlID | The control identifier (controlID) as returned by a GUICtrlCreate... function. |
| size | Fontsize (default is 8.5). |
| weight | [optional] Font weight (default 400 = normal). |
| attribute | [optional] To define italic:2 underlined:4 strike:8 char format (add together the values of all the styles required, 2+4 = italic and underlined). |
| fontname | [optional] The name of the font to use. |
| quality | [optional] Font quality to select (default is PROOF_QUALITY=2). |
| Success: | Returns 1. |
| Failure: | Returns 0. |
#include <GUIConstantsEx.au3>
Example()
Func Example()
Local $font, $msg
GUICreate("My GUI") ; will create a dialog box that when displayed is centered
$font = "Comic Sans MS"
GUICtrlCreateLabel("underlined label", 10, 20)
GUICtrlSetFont(-1, 9, 400, 4, $font) ; will display underlined characters
GUICtrlCreateLabel("italic label", 10, 40)
GUICtrlSetFont(-1, 9, 400, 2, $font) ; will display italic characters
GUISetFont(9, 400, 8, $font) ; will display strike characters
GUICtrlCreateLabel("strike label", 10, 60)
GUISetState() ; will display an empty dialog box
; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
WEnd
EndFunc ;==>Example