'Declaration
Public Event ExpandDirectionChanging As EventHandler(Of ExpandDirectionChangingEventArgs)
public event EventHandler<ExpandDirectionChangingEventArgs> ExpandDirectionChanging
Event Data
The event handler receives an argument of type ExpandDirectionChangingEventArgs containing data related to this event. The following ExpandDirectionChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
NewExpandDirection | Gets the value that ExpandDirection is about to change to. |
NewOrientation | Gets the value that C1Accordion.Orientation is about to change to. |
OldExpandDirection | Gets the current value of ExpandDirection. |
OldOrientation | Gets the current value of C1Accordion.Orientation |
OrientationChanging | Gets a value that indicates whether the value of C1Accordion.Orientation will be changed. |
See Also