Class IgbPinColumnEventArgsDetail
The event arguments after a column's pin state is changed.
insertAtIndex
specifies at which index in the pinned/unpinned area the column was inserted.
isPinned
returns the actual pin state of the column after the operation completed.
Inheritance
System.Object
IgbPinColumnEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbPinColumnEventArgsDetail : IgbBaseEventArgsDetail, JsonSerializable
Constructors
IgbPinColumnEventArgsDetail()
Declaration
public IgbPinColumnEventArgsDetail()
Properties
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 succesfull, 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
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