The style of vertical grid lines.
Usage
Set_Property(OLECtrlEntID, "OLE.VerticalGridStyle", OptionValue)
Values
OptionValue can be set to one of the following valid options:
Value | Description |
---|---|
None | No vertical grid lines |
DotSmall | Vertical grid lines composed of small dots |
DotLarge | Vertical grid lines composed of large dots |
Dash | Vertical grid lines composed of dashes |
Solid | Solid vertical grid lines |
Default: None
Remarks
The VerticalGridStyle property establishes the how vertical grid lines are rendered. By default, this is set to "None", which means there are no vertical grid lines. If you want to add vertical grid lines, set this to one of the other options such as "Solid". This property only affects vertical grid lines. To change horizontal grid lines, use HorizontalGridStyle.
Example
// Add solid vertical grid lines Set_Property(@Window:".OLE_REPORTTABLE", "OLE.VerticalGridStyle", "Solid") // Use dashes for vertical grid lines Set_Property(@Window:".OLE_REPORTTABLE", "OLE.VerticalGridStyle", "Dash")