AccusoftNotateXpress13 ActiveX DLL > NotateXpress Object : Font Property |
Visual Basic |
---|
Public Property Font As Font |
A font object appropriate within a programming environment:
If the specified font is not available on the system the application is running the operating system will provide a close-match replacement.
This only effects elements created with the toolbar.
DimToolFontAsNewStdFont ToolFont.Name="Arial" ToolFont.Size=24 ToolFont.Italic=True NotateXpress1.Font=ToolFont
VarToolFont:TFont; begin ToolFont:=TFont.Create; ToolFont.Name:='TimesNewRoman'; ToolFont.Size:=16; ToolFont.Style:=[fsBold]; Notate1.Font:=ToolFont; end;