AccordionCancelEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Represents the method that will handle the Selecting or Deselecting event of a Accordion control.
- C#
- VB.NET
public delegate void AccordionCancelEventHandler(Object sender, AccordionCancelEventArgs e)
Public Delegate Sub AccordionCancelEventHandler(ByVal sender As [Object], ByVal e As AccordionCancelEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | AccordionCancelEventArgs | A AccordionCancelEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| Accordion.Selecting | Occurs before a panel is selected, enabling a handler to cancel the panel change. |
| Accordion.Deselecting | Occurs before a panel is deselected, enabling a handler to cancel the panel change. |