Home › Forums › WinForms controls › Xceed Grid for WinForms › How to remove borders from cells/rows › Reply To: How to remove borders from cells/rows
Instead of overriding the PaintBorders method, try overriden the Borders property, like this:<pre>static readonly fBorders = new Borders(0, 0, 0, 0);
public override Borders Borders { get { return fBorders; } }</pre>
Imported from legacy forums. Posted by Tommy (had 331 views)