How to print a grid from left margin in WinForms GridGroupingControl?
The WinForms GridGroupingControl can be printed from left margin by setting the CenterHorizontal property to false that is true by default. This property specifies when the Grid should be centered horizontally on the page while printing.
C#
//Print Grid from Left margin.
this.gridGroupingControl1.TableModel.Properties.CenterHorizontal = false; VB
'Print Grid from Left margin.
Me.gridGroupingControl1.TableModel.Properties.CenterHorizontal = FalseThe screenshot below illustrates the printing of a grid when the CenterHorizontal option is set to true.

The screenshot below illustrates the printing of a grid when the CenterHorizontal option is set to false.

Samples:
Reference Link: Printing