Class ChipEventArgs
Interface for Chip Events.
Inheritance
System.Object
ChipEventArgs
Namespace: Syncfusion.Blazor.Buttons
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChipEventArgs : Object
Constructors
ChipEventArgs()
Declaration
public ChipEventArgs()
Properties
Cancel
It denotes whether the item can be deleted or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Element
It denotes the deleted Item element.
Declaration
public ElementReference Element { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An object of type Microsoft.AspNetCore.Components.ElementReference representing the deleted Item element. |
Index
It denotes the deleted item index.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Selected
It denotes whether the clicked item is selected or not.
Declaration
public bool Selected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Text
It denotes the deleted item text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
It denotes the deleted item value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |