Applies to

Edit table.

Description

Set and retrieve number of allowable rows within an edit table.

Note: Setting the ROWLIMIT will not alter existing data in a existing table. It will only limit the number of rows that may be inserted into an existing table.

Usage

rowLimit = Get_Property (objectname,”ROWLIMIT”)

existingLimit = Set_Property (objectname”ROWLIMIT”value)

Remarks

Values passed in Set_Property():

ValueDescription
ValueThe number of allowable rows in an edit table.

Returns

Values returned by Get_Property and Set_Property

ValueDescription
rowLimitThe current number of allowable rows in an edit table.
existingLimitThe number of allowable rows prior to the setting of the new value.

Example

rowLimit = Get_Property(CtrlEntID,'ROWLIMIT') 
existingLimit = Set_Property(CtrlEntID,'ROWLIMIT',10)
  • No labels