HA
haneefm
Syncfusion Team
October 3, 2007 09:00 PM UTC
Hi Code1234,
Thank you for your interest in Syncfusion Products.
When you try to move columns by selecting them and then mousing down on the column header and dragging them is controlled by the AllowDragSelectedCols property. The Model.ColsMoved event will get triggered when you drag the selected columns by setting the AllowDragSelectedCols property to true. Below are the codes that shows this task.
this.gridControl1.Model.ColsMoved += new Syncfusion.Windows.Forms.Grid.GridRangeMovedEventHandler(Model_ColsMoved);
void Model_ColsMoved(object sender, Syncfusion.Windows.Forms.Grid.GridRangeMovedEventArgs e)
{
Console.WriteLine("Column is moved from the position "+ e.From + " to " + e.Target +".");
}
Best regards,
Haneef