Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The AutoPopulate property enables/disables auto population. Auto population is on by default, and its purpose is to refresh the table after every property row change. If you plan on performing multiple operations 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

Code Block
// 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)

...