Class
DropDownTreeItemClickEventArgs

Event arguments for the OnItemClick event. Provides information about the clicked tree item.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DropDownTreeItemClickEventArgs : EventArgs

Inheritance: objectEventArgsDropDownTreeItemClickEventArgs

Inherited Members EventArgs.Empty

Constructors

DropDownTreeItemClickEventArgs(object, EventArgs)

Declaration

cs-api-definition
public DropDownTreeItemClickEventArgs(object item, EventArgs eventArgs)

Parameters

item

object

eventArgs

EventArgs

Properties

EventArgs

The original event arguments from the click action. Contains mouse position and keyboard modifiers.

Declaration

cs-api-definition
public EventArgs EventArgs { get; }

Property Value

EventArgs

Item

The data item that was clicked.

Declaration

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

Property Value

object