Class IgbColumnMovingEndEventArgsDetail
Represents event arguments related to the end of a column moving operation in a grid
Inheritance
System.Object
IgbColumnMovingEndEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbColumnMovingEndEventArgsDetail : IgbBaseEventArgsDetail, JsonSerializable
Constructors
IgbColumnMovingEndEventArgsDetail()
Declaration
public IgbColumnMovingEndEventArgsDetail()
Properties
Cancel
cancel returns whether the event has been intercepted and stopped
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 |
|
Source
The source of the event represents the column that is being moved.
The ColumnType contains the information (the grid it belongs to, css data, settings, etc.) of the column in its properties
Declaration
public IgbColumn Source { get; set; }
Property Value
Target
The target of the event represents the column, the source is being moved to.
The ColumnType contains the information (the grid it belongs to, css data, settings, etc.) of the column in its properties
Declaration
public IgbColumn Target { get; set; }
Property Value
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