'Declaration
Public Event ExpandDirectionChanged As EventHandler(Of ExpandDirectionChangedEventArgs)
public event EventHandler<ExpandDirectionChangedEventArgs> ExpandDirectionChanged
Event Data
The event handler receives an argument of type ExpandDirectionChangedEventArgs containing data related to this event. The following ExpandDirectionChangedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewExpandDirection | Gets the current value of ExpandDirection. |
NewOrientation | Gets the new value of C1Accordion.Orientation |
OldExpandDirection | Gets the previous value of ExpandDirection. |
OldOrientation | Gets the previous value of C1Accordion.Orientation |
OrientationChanged | Gets a value that indicates whether the value of C1Accordion.Orientation was changed or not. |
See Also