Home › Forums › WinForms controls › Xceed Grid for WinForms › Column Events
Can I raise an Event when I: 1. Hide a column (set to not visible)2. Reorder columns
Imported from legacy forums. Posted by troy@querytool.com (had 1865 views)
Use the VisibleChanged and the VisibleIndexChanged events. Both are on the Column class. Here is more information from the help documentation :
<a href=”http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.Column_events.html”>http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.Column_events.html</a>
<a href=”http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.GridElement~VisibleChanged_EV.html”>http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.GridElement~VisibleChanged_EV.html</a>
<a href=”http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.Column~VisibleIndexChanged_EV.html”>http://doc.xceedsoft.com/products/XceedGrid/Xceed.Grid~Xceed.Grid.Column~VisibleIndexChanged_EV.html</a>
Imported from legacy forums. Posted by André (had 2862 views)