Class IgbPinColumnCancellableEventArgsDetail
The event arguments before a column's pin state is changed.
insertAtIndexspecifies at which index in the pinned/unpinned area the column is inserted.
Can be changed in the columnPin event.
isPinned returns the actual pin state of the column. When pinning/unpinning is successful,
the value of isPinned will change accordingly when read in the "-ing" and "-ed" event.
Inheritance
System.Object
IgbPinColumnCancellableEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbPinColumnCancellableEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
IgbPinColumnCancellableEventArgsDetail()
Declaration
public IgbPinColumnCancellableEventArgsDetail()
Properties
Cancel
Provides the ability to cancel the event.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Column
Declaration
public IgbColumn Column { get; set; }
Property Value
InsertAtIndex
If pinned, specifies at which index in the pinned area the column is inserted.
If unpinned, specifies at which index in the unpinned area the column is inserted.
Declaration
public double InsertAtIndex { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
IsPinned
Returns the actual pin state of the column.
If pinning/unpinning is successful, value of isPinned will change accordingly when read in the "-ing" and "-ed" event.
Declaration
public bool IsPinned { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
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
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
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 |
|
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements