Home Search

DriveWorks Pro 21
Number Of Rows

Send Feedback

Number Of Rows

The maximum number of rows before the items are added to another column, 0 means no columns will ever be added.

Property Type: Static

Default Value: 0

Hierarchical Reference: ControlName.NumberofRows

To Change the Default Value

Ensure the property is a static property (It will display the gray orb alongside the property name)

The default value of the static property can be changed by typing the required value directly into the property field

  1. Click in the property for the control to be changed.
  2. Type the required value directly into the property field.

Examples

Number Of Rows Property Value (static)Result
0All items will be listed in a single column.
1All items will be listed in a single row.
3All items will be listed in 3 rows.

A rule can also be built for this property by changing the type to dynamic.

See How To: Change A Static Property To A Dynamic Property.

Number Of Rows Property Value (Dynamic)Result
IF(DWVariableOptionQty<3 , 0 , 2)When the variable OptionQty is less than 3 the available options will be listed on a single row. Otherwise they will be listed in 2 rows.

Value set in Form Designer. Static properties can be made Dynamic by double clicking the gray radio button.