Subscriber portal
Gets or sets the name of the font that should be used for the control.
public str font([str value])
The following example shows how to return and set the font for a form combo box control.
str strFont; ; // The ctrl variable was previously assigned // as a form combo box control value. // Retrieve the font. strFont = ctrl.font(); // Set the font. ctrl.font("Times New Roman");