Class ChipEventArgs
Interface for Chip Events.
Inherited Members
Namespace: Syncfusion.Blazor.Buttons
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChipEventArgs
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 |
|---|---|
| bool |
|
Element
It denotes the deleted Item element.
Declaration
public ElementReference Element { get; set; }
Property Value
| Type | Description |
|---|---|
| ElementReference | An object of type ElementReference representing the deleted Item element. |
Index
It denotes the deleted item index.
Declaration
public int Index { get; set; }
Property Value
| Type | Description |
|---|---|
| int | 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 |
|---|---|
| bool |
|
Text
It denotes the deleted item text.
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Value
It denotes the deleted item value.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |