Borders.Bottom.Color property

I am trying to set the color of a row to blue. However, when I try to set the color by this code: Me.GridControl.RowStyles(1).Borders.Bottom = New GridBorder(GridBorderStyle.Standard, Color.Blue) the bordercolor does not change. What am I doing wrong? It seems that it works for any BorderStyle except Standard.

2 Replies

TE Ted September 17, 2004 02:38 PM UTC

>I am trying to set the color of a row to blue. However, when I try to set the color by this code: > >Me.GridControl.RowStyles(1).Borders.Bottom = New GridBorder(GridBorderStyle.Standard, Color.Blue) > >the bordercolor does not change. What am I doing wrong? It seems that it works for any BorderStyle except Standard. I am trying to set the Row''s border bottom to the color blue. not the backcolor of the cell.


AD Administrator Syncfusion Team September 17, 2004 03:09 PM UTC

Color is only supported for solid border styles. Me.GridControl.RowStyles(1).Borders.Bottom = new GridBorder(GridBorderStyle.Solid, Color.Blue)

Loader.
Up arrow icon