AccordionEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Provides data for the Selected and Deselected events of a Accordion control.
- C#
- VB.NET
public class AccordionEventArgs : EventArgs
Public Class AccordionEventArgs
Inherits EventArgs
Constructors
AccordionEventArgs(panel, panelIndex, action)
Initializes a new instance of the AccordionEventArgs class.
| Name | Type | Description |
|---|---|---|
| panel | AccordionPanel | The AccordionPanel the event is occurring for. |
| panelIndex | Int32 | The zero-based index of panel in the Panels collection. |
| action | AccordionAction | One of the AccordionAction values. |
Properties
Action
AccordionAction: Returns a value indicating which event is occurring.
Panel
AccordionPanel: Returns the AccordionPanel the event is occurring for.
PanelIndex
Int32: Returns the zero-based index of the Panel in the Panels collection.
Used By
| Name | Description |
|---|---|
| AccordionEventHandler | Represents the method that will handle the Selected or Deselected event of a Accordion control. |