Class IgbGridClipboardEvent
The event arguments when data from a grid is being copied.
Inheritance
System.Object
IgbGridClipboardEvent
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbGridClipboardEvent : BaseRendererElement, JsonSerializable
Constructors
IgbGridClipboardEvent()
Declaration
public IgbGridClipboardEvent()
Properties
Cancel
cancel returns whether an external event has intercepted the copying
If the value becomes "true", it returns/exits from the method, instantiating the interface
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Data
data can be of any type and refers to the data that is being copied/stored to the clipboard
Declaration
public object[] Data { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
DataScript
Provides a means of setting Data in the JavaScript environment.
Declaration
public string DataScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
SetNativeElement(Object)
Declaration
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
SetNativeElementAsync(Object)
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Implements