Versions Compared

Key

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

...

All gridlines are shared between adjacent cells. Thus, setting a cell's gridline will affects the cell adjacent to that gridline. For example, setting the bottom gridline of a cell to "None" means the top gridline of the cell below it is also "None".

Example

Code Block
 // Remove all gridlines 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellGridLines[All; All]", "None":@FM:"None":@FM:"None":@FM:"None") 

 // Set vertical gridlines only 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellGridLines[All; All]", "3DFace":@FM:"None":@FM:"3DFace":@FM:"None") 

 // Set horizontal gridlines only 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellGridLines[All; All]", "None":@FM:"Black":@FM:"None":@FM:"Black")

...