Class
PanelBarEventArgsBase

Provides base functionality for all PanelBar event argument classes, containing common properties used across different PanelBar events. This class serves as the foundation for event-specific argument classes that provide additional context for user interactions.

Definition

Namespace:Telerik.Blazor.Components.PanelBar.EventArgs

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public abstract class PanelBarEventArgsBase

Inheritance: objectPanelBarEventArgsBase

Derived Classes: PanelBarCollapseEventArgsPanelBarExpandEventArgsPanelBarItemClickEventArgsPanelBarItemRenderEventArgs

Constructors

PanelBarEventArgsBase()

Declaration

cs-api-definition
protected PanelBarEventArgsBase()

Properties

Item

Contains the data object associated with the PanelBar item that triggered the event. Cast this to your specific data model type to access all properties of the affected item. This allows you to identify which data item was clicked, expanded, collapsed, or rendered.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object