Class IgbClipboardOptions
An interface describing settings for clipboard options
Inheritance
System.Object
IgbClipboardOptions
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbClipboardOptions : BaseRendererElement, JsonSerializable
Constructors
IgbClipboardOptions()
Declaration
public IgbClipboardOptions()
Properties
Apply the columns formatters (if any) on the data in the clipboard output.
Declaration
public bool CopyFormatters { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Include the columns headers in the clipboard output.
Declaration
public bool CopyHeaders { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Enabled
Enables/disables the copy behavior
Declaration
public bool Enabled { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Separator
The separator used for formatting the copy output. Defaults to \t.
Declaration
public string Separator { 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