Versions Compared

Key

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

...

For large and complicated tables there is increasingly complicated processing involved in recalculating the size of all the cells, which is often done just before the table is redrawn. Thus, it is highly recommended that you use the Redraw property to increase control performance.

Code Block
 * Temporarily disable redrawing 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.Redraw", 0) 

 *... 
* Do lots of property changes and method calls here... 
*... 

 * Now redraw the edit table 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.Redraw", 1)

...