'Declaration
Public Event PageExpandStateChanging As EventHandler(Of PageExpandStateChangingEventArgs)
public event EventHandler<PageExpandStateChangingEventArgs> PageExpandStateChanging
Event Data
The event handler receives an argument of type PageExpandStateChangingEventArgs containing data related to this event. The following PageExpandStateChangingEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
NewExpandedState | Gets the value that IsExpanded is about to change to. |
Page | Gets the C1AccordionPage whose expanded state is changing. |
See Also