Type | Description | |||
GridLinesStyleEnum | A GridLinesStyleEnum expression that specifies the style to show the control's horizontal or vertical lines. |
The following VB sample shows dash style for horizontal gridlines, and solid style for vertical grid lines:
GridLineStyle = GridLinesStyleEnum.exGridLinesHDash Or GridLinesStyleEnum.exGridLinesVSolid
The following VB/NET sample shows dash style for horizontal gridlines, and solid style for vertical grid lines:
GridLineStyle = exontrol.EXGRIDLib.GridLinesStyleEnum.exGridLinesHDash Or exontrol.EXGRIDLib.GridLinesStyleEnum.exGridLinesVSolid
The following C# sample shows dash style for horizontal gridlines, and solid style for vertical grid lines:
GridLineStyle = exontrol.EXGRIDLib.GridLinesStyleEnum.exGridLinesHDash | exontrol.EXGRIDLib.GridLinesStyleEnum.exGridLinesVSolid;
The following Delphi sample shows dash style for horizontal gridlines, and solid style for vertical grid lines:
GridLineStyle := Integer(EXGRIDLib.GridLinesStyleEnum.exGridLinesHDash) Or Integer(EXGRIDLib.GridLinesStyleEnum.exGridLinesVSolid);
The following VFP sample shows dash style for horizontal gridlines, and solid style for vertical grid lines:
GridLineStyle = 36