lp
  • lp
  • Newbie Topic Starter
2011-08-31T18:18:28Z
I have an application that it would look easier to separate columns by a line, possibly by changing the border properties?
Igor/10Tec
2011-09-01T07:00:52Z
If we understand your question right, you need thick vertical grid lines. iGrid has the GridLines object property you should use for that. For instance, we could set the vertical grid lines width to 3 pixels and remove the horizontal grid lines at all using this code:

iGrid1.GridLines.Horizontal.Width = 0;
iGrid1.GridLines.Vertical.Width = 3;

You could also get some special "effects" using the Color sub-property. For instance, you could set the grid lines color to the color of the grid background, and in this case you would see empty vertical spaces between your columns.
lp
  • lp
  • Newbie Topic Starter
2011-09-01T12:53:36Z
That sounds like thick vertical or horizontal lines for the whole grid. I just want a vertical line along one side of the column. Much like a cell border property.
Igor/10Tec
2011-09-02T08:19:42Z
Then use the universal solution - custom drawing!
See the CustomDrawCellBackground/CustomDrawCellForeground events.