Hi!
I've got an UltraWinGrid with one column that has a checkbox in its header by setting ugrid.Header.CheckBoxVisiblity = UltraWinGrid.HeaderCheckBoxVisibility.Always
How do I set the value of the checkbox through code? In other words, what's the object of the header checkbox so I can set its value property?
TIA,Dave
Hi Dave,
The HeaderCheckBox can't be a property, because it needs the context of both the column and the rows collection you are working with. So you have to use methods, instead.
There are methods on the column for Get/SetHeaderCheckState.
Is there an event when headercheckbox is clicked, so that i can show a Waitcursor?
How to apply the checkstate from the headercheckbox only to unfiltered rows?