Versions Compared

Key

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

...

This property is useful for syncronizing tables or aligning multiple OLE EditTables.

Example

Code Block
 // Never show the scrollbars 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ScrollBarsVisible", "Never":@FM:"Never") 

 // Always show the scrollbars 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ScrollBarsVisible", "Always":@FM:"Always") 

 // Always show the verticle scrollbars of two syncronized tables, 
// but never show the horizontal bar for the first table 
Set_Property(@Window:".OLE_EDITTABLE_1", "OLE.ScrollBarsVisible", "Always":@FM:"Never") 
Set_Property(@Window:".OLE_EDITTABLE_2", "OLE.ScrollBarsVisible", "Always")