AD
Administrator
Syncfusion Team
February 17, 2005 10:30 AM UTC
You can change the color of this line by setting:
this.gridControl1.Properties.FixedLinesColor = Color.Red;
If you want to hide it, then it is a little more work.
gridControl1.TableStyle.Borders.Right = new GridBorder(this.gridControl1.Model.Options.DefaultGridBorderStyle, this.gridControl1.Properties.GridLineColor);
gridControl1.TableStyle.Borders.Bottom = new GridBorder(this.gridControl1.Model.Options.DefaultGridBorderStyle, this.gridControl1.Properties.GridLineColor);
this.gridControl1.Model.Properties.DisplayVertLines = false;
this.gridControl1.Model.Properties.DisplayHorzLines = false;