Category / Section
How to hide the Grid cell's borders, column and row headers while printing?
You can hide the Grid cell's borders and column and row headers while printing by setting the following properties.
//To hide cell borders and headers while printing.
this.gridControl1.Model.Properties.PrintHorzLines = false;
this.gridControl1.Model.Properties.PrintVertLines = false;
this.gridControl1.Model.Properties.PrintFrame = false;
this.gridControl1.Model.Properties.PrintColHeader = false;
this.gridControl1.Model.Properties.PrintRowHeader = false;'To hide cell borders and headers while printing.
Me.gridControl1.Model.Properties.PrintHorzLines = False
Me.gridControl1.Model.Properties.PrintVertLines = False
Me.gridControl1.Model.Properties.PrintFrame = False
Me.gridControl1.Model.Properties.PrintColHeader = False
Me.gridControl1.Model.Properties.PrintRowHeader = FalseThe following is the screenshot for the print preview dialog after removing the CellBorder and Row and Column headers.

Sample Link: