Accordion for WinForms | ComponentOne
C1.Win.Accordion Namespace / C1Accordion Class / PageExpandStateChanging Event

In This Topic
    PageExpandStateChanging Event
    In This Topic
    Occurs when one of Pages IsExpanded property is about to be changed.
    Syntax
    '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.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the value that IsExpanded is about to change to.  
    Gets the C1AccordionPage whose expanded state is changing.  
    See Also