The font used to render the tabs' captions.
Usage
Set_Property(OLECtrlEntID, "OLE.Font" , FontArray) |
Values
The FontArray structure uses the same formatting as the OpenInsight FONT property. Visit the Font common OLE property page for further documentation.
Default: Tahoma, 8 pt.
Remarks
Set this property to change the font used to render captions for all tabs.
Example
// Set the font to Arial Set_Property( @Window : ".OLE_TAB" , "OLE.Font" , "Arial" ) // Set the font to italic Set_Property( @Window : ".OLE_TAB" , "OLE.Font" , @SVM : @SVM : @SVM : 1 ) // Set the font to bold Set_Property( @Window : ".OLE_TAB" , "OLE.Font" , @SVM : @SVM : 700 ) |