Temporarily disables auto updating.

Usage

Set_Property(OLECtrlEntID, "OLE.AutoPopulate", Boolean)

Values

[True | False]

Default: True

Remarks

The AutoPopulate property enables/disables auto population. Auto population is on by default, and its purpose is to refresh the table after every row change. If you plan on add and removing lots of rows at once, turn this off until you are done. This will increase performance and ensure that the indexing doesn't change during the process. This property only affects adding and removing rows. It will have no affect when modifying existing rows.

Example

// Turn off auto populate 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.AutoPopulate", 0) 

// ... Do some Report Table Stuff Here ... 

// Turn back on auto populate 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.AutoPopulate", 1)
  • No labels