Spread for ASP.NET 8.0 Product Documentation > Developer's Guide > Customizing User Interaction > Customizing Interaction with Rows and Columns > Allowing the User to Move Columns |
You can allow the user to drag and move columns. Set the AllowColumnMove property in the SheetView class to allow the user to move columns.
For the user to move columns, they simply left click on the header of the column to move and drag the header back or forth over the header area and release the mouse over the header of the desired destination.
Moving columns is not supported in child sheets in hierarchical displays.
Set the AllowColumnMove property.
This example code sets the AllowColumnMove property.
C# |
Copy Code
|
---|---|
FpSpread1.ActiveSheetView.AllowColumnMove = true;
|
VB |
Copy Code
|
---|---|
FpSpread1.ActiveSheetView.AllowColumnMove = True
|