ComponentOne Accordion for ASP.NET Web Forms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1Accordion Namespace / C1AccordionPane Class / C1AccordionPane Constructor / C1AccordionPane Constructor(C1Accordion)
Parent C1Accordion instance.

In This Topic
    C1AccordionPane Constructor(C1Accordion)
    In This Topic
    Initializes a new instance of the AccordionPane class. This constructor is primarily used by controls developers. Use this constructor if you need to reference the parent Accordion control inside overridden methods when the pane is not yet added to the Accordion's Panes collection.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal accordion As C1Accordion _
    )
    public C1AccordionPane( 
       C1Accordion accordion
    )

    Parameters

    accordion
    Parent C1Accordion instance.
    Remarks
    Note, this constructor will not add newly created AccordionPane into Accordion's Panes collection automatically. So, developer need to do it manually.
    See Also