Subscriber portal
Gets or sets the size of the font that should be used for the control.
public int fontSize([int value])
The following example shows how to return and set the font size for a form combo box control.
int nSize; // The ctrl variable was previously assigned // as a form combo box control. // Retrieve the font size. nSize = ctrl.fontSize(); // Set the font size. ctrl.fontSize(16);