Versions Compared

Key

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

...

The last field establishes the padding to be used when the cell's column is selected. The cell's column is considered to be selected when any other cell in that column is selected.

Example

Code Block
 // Force all cell's have a different padding when row is selected 
SelPadding = "" 
SelPadding<2, 2> = 11   ;// Set top padding to 11 when row is selected 
SelPadding<2, 2> = 0    ;// Remove bottom padding when row is selected 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellSelPadding[All;All]", SelPadding)

...