Class ClickEventArgs
Provides information about the click event arguments of the SfSplitButton.
Namespace: Syncfusion.Blazor.SplitButtons
Assembly: Syncfusion.Blazor.dll
Syntax
public class ClickEventArgs : Object
Remarks
This class is used to pass event data when the primary button of a SfSplitButton is clicked.
Constructors
ClickEventArgs()
Declaration
public ClickEventArgs()
Properties
Element
Gets or sets the primary split button element.
Declaration
public ElementReference Element { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An Microsoft.AspNetCore.Components.ElementReference object that represents the primary split button element. |
Remarks
This property provides a reference to the DOM element of the primary button that was clicked.
Name
Gets or sets the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | A |
Remarks
This property is used to identify the event that was triggered. For the Click event, the name is "Click".