Search
FlowChart.GridStyle Property
See Also
 



Gets or sets the style of the alignment grid.

 Syntax

VB6  Copy Code

Public Property Get GridStyle() As EGridStyle
Public Property Let GridStyle( _
    ByVal Value As EGridStyle _
)

C++  Copy Code

public:
EGridStyle get_GridStyle ()
void put_GridStyle (
    EGridStyle value
)

 Property Value

A member of the EGridStyle enumeration. The default is gsPoints.

 Remarks

Specifies how the alignment grid is drawn. If the property is set to gsPoints, the grid is presented as a matrix of points. If set to gsLines, the grid is composed of series of crossed horizontal and vertical lines. The grid points or lines are painted with the color specified via GridColor; the distance between them is set via GridSize.

 See Also