'Declaration
Public Event IsExpandedChanging As EventHandler(Of PropertyChangingEventArgs(Of Boolean))
public event EventHandler<PropertyChangingEventArgs<bool>> IsExpandedChanging
Event Data
The event handler receives an argument of type C1.WPF.PropertyChangingEventArgs<T> containing data related to this event. The following PropertyChangingEventArgs<T> properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether this C1.WPF.PropertyChangingEventArgs`1 is cancel. |
NewValue | (Inherited from C1.WPF.PropertyChangedEventArgs<T>) |
OldValue | (Inherited from C1.WPF.PropertyChangedEventArgs<T>) |
See Also