Versions Compared

Key

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

...

PosNameTypeDescriptionDefault
<1>Selected Cell PaddingMultivalueThe padding used when the cell is selected-1
<2>Selected Record PaddingMultivalueThe padding used when the cell's record is selected, but not the cell itself-1
<3>Selected Column PaddingMultivalueThe padding used when the cell's column is selected, but not the cell itself-1

...

PosNameTypeDescription
<1, 1>Left PaddingIntegerThe number of pixels between the cell's left edge and its contents
<1, 2>Top PaddingIntegerThe number of pixels between the cell's top edge and its contents
<1, 3>Right PaddingIntegerThe number of pixels between the cell's right edge and its contents
<1, 4>Bottom PaddingIntegerThe number of pixels between the cell's bottom edge and its contents

...

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)

...