You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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 property change. If you plan on performing multiple operations at once, turn this off until you are done. This will increase performance and ensure that the indexing doesn't change during the process.

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