New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public abstract class PanelBarEventArgsBase

Inheritance: objectPanelBarEventArgsBase

Derived Classes: PanelBarCollapseEventArgsPanelBarExpandEventArgsPanelBarItemClickEventArgsPanelBarItemRenderEventArgs

Constructors

C#
protected PanelBarEventArgsBase()

Properties

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.

C#
public object Item { get; set; }