The table's border-adjacent grid line bahavior.

Usage

Set_Property(OLECtrlEntID, "OLE.ShowBorderGrid", Boolean)

Values

[True | False]

Default: False

Remarks

The ShowBorderGrid property determines what to do with borders that appear adjacent to the edge of the table. If these lines are allowed to show, it can make the table's borders suddenly look bigger than usual, causing some visual inconsistency. Therefore, setting this value to 0, which is the default, hides grid lines that would normally appear right next to the table's borders.

If you wish to show your grid lines at all times, set this property to 1.

Example

// Show gridlines regardless of their location 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ShowBorderGrid", 1) 

// Hide gridlines adjacent to the table's border 
Set_Property(@Window:".OLE_EDITTABLE", "OLE.ShowBorderGrid", 0)

See Also

CellGridLines

  • No labels