====== ROWLIMIT Property ====== ==== 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(): ^Value^Description^ |Value|The number of allowable rows in an edit table.| ==== Returns ==== Values returned by Get_Property and Set_Property ^Value^Description^ |rowLimit|The current number of allowable rows in an edit table.| |existingLimit|The number of allowable rows prior to the setting of the new value.| ==== Example ==== rowLimit = Get_Property(CtrlEntID,'ROWLIMIT') existingLimit = Set_Property(CtrlEntID,'ROWLIMIT',10)