We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

check if columns recordered


Hi,

Is there an event that gets triggered or a boolean that gets set when the user reorders the columns by dragging them? (An event would be prefereable to a boolean.) Thanks!

1 Reply

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

Loader.
Live Chat Icon For mobile
Up arrow icon