Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription
column, rowWhen column and row are both positive, applies the fontstructure to the cell; when column is positive and row is 0, applies fontstructure to the entire column; when column is 0 and row is positive applies the fontstructure to the entire row. When the column is positive and row is -1 the row button font is set. When the row is positive and the column is set to -1 the column header font is set.
FontstructureAn @SVM-delimited array. (Refer to the FONT property in Chapter 4: Properties.)

See also

FONT propertyUtility ("CHOOSEFONT")

Examples

Code Block
/*  Set the header in column 1 to desired FONT scheme */
rv = Send_Message(@Window:".TABLE_3", "FONT_BY_POS", 1, -1, "Times New Roman")
/* Set the 5th row's button font to Helvetica */
rv = Send_Message(@Window:".TABLE_3", "FONT_BY_POS", -1, 5, "Helvetica")