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