JamBaseShellListViewCheckStateChanged Event |
This event is fired when the state of a checkbox was changed by the user or if it was changed internally via checkstate synchronization of other controls.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax public event EventHandler<CheckStateChangedEventArgs> CheckStateChanged
Public Event CheckStateChanged As EventHandler(Of CheckStateChangedEventArgs)
public:
event EventHandler<CheckStateChangedEventArgs^>^ CheckStateChanged {
void add (EventHandler<CheckStateChangedEventArgs^>^ value);
void remove (EventHandler<CheckStateChangedEventArgs^>^ value);
}
member CheckStateChanged : IEvent<EventHandler<CheckStateChangedEventArgs>,
CheckStateChangedEventArgs>
Value
Type:
SystemEventHandlerCheckStateChangedEventArgsRemarks In contrast to
ItemChecked this event will be raised if the checkstate was changed by the user, or if it was changed indirectly, by synchronization from other controls.
See Also