|
Controlleroptions: |
This property used to provide the support for mouse controller on the GridControl. Code Snippet: this.gridControl1.ControllerOptions = Syncfusion.Windows.Forms.Grid.GridControllerOptions.DragColumnHeader; DragColumnHeader option enables a mouse controller that provide support for dragging column headers within the grid by clicking on a header and dragging it to a new position. |
|
MoveRange(): |
This method is used to moves a range of rows and columns. Code snippet: this.gridControl1.Cols.MoveRange(6, 2, 1); //Move Column 6 and 7 to the 1st column position. |