How to add Grid control inside the SplitterControl
27 Sep 2018 / 1 minute to read
The SplitterControl can be embedded with Grid control and the following code example allows addition of a Grid inside the SplitterControl.
private Syncfusion.Windows.Forms.Grid.GridControl gridControl1;
this.gridControl1 = new Syncfusion.Windows.Forms.Grid.GridControl();
this.gridControl1.ColCount = 10;
this.gridControl1.RowCount = 100;
this.splitterControl1.Controls.Add(this.gridControl1);
Private WithEvents gridControl1 As GridControl
Me.gridControl1 = New Syncfusion.Windows.Forms.Grid.GridControl()
Me.gridControl1.ColCount = 10
Me.gridControl1.RowCount = 100
Me.splitterControl1.Controls.Add(Me.gridControl1)
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page