*RowLabel()

Sets the row(s) label in a form or a tableform.

Syntax

*RowLabel(row_1,[row_2,]"row_label")

Arguments

row_1
The row containing the label.
Data type: integer
row_2
An optional argument that describes the row number to which the field label should span, beginning with row_1.
Data type: integer
row_label
The descriptive label for the row(s).
Data type: string

Example

*DefineForm(frmdef_vehpar, ds)
  *SetRowsCols(6, 5)
  *ColumnWidth(1, 20)
  *ColumnWidth(2, 5, 7)
  *RowLabel(1, "Z heights")
  *RowLabel(2, "Wheelbases")
  *RowLabel(3, "C Factors")
  *RowLabel(4, "Brake Ratios")
  *RowLabel(5, "Tire Ratios")
  *RowLabel(6, "Axle Ratios")
  *SetCell(1, 2, ds.zh.value, , Left, No_Edit)
  *SetCell(2, 2, ds.wb.value, , Left, No_Edit)
  *SetCell(3, 2, ds.cf.value, , Left, No_Edit)
  *SetCell(4, 2, ds.br.value, , Left, No_Edit)
  *SetCell(5, 2, ds.tr.value, , Left, No_Edit)
  *SetCell(6, 2, ds.ar.value, , Left, No_Edit)
*EndDefine()

Context

*DefineForm()

*DefineTableForm()

Comments

When used in a *DefineTableForm() block, the label is used for the specified row in every record of the table form.