Show / Hide Table of Contents

Class IgbColumnMovingEndEventArgsDetail

Represents event arguments related to the end of a column moving operation in a grid

Inheritance
System.Object
BaseRendererElement
IgbBaseEventArgsDetail
IgbColumnMovingEndEventArgsDetail
Implements
JsonSerializable
Inherited Members
IgbBaseEventArgsDetail.SetNativeElementAsync(Object)
IgbBaseEventArgsDetail.SetNativeElement(Object)
IgbBaseEventArgsDetail.Owner
BaseRendererElement._name
BaseRendererElement.eventCallbacksCache
BaseRendererElement._cachedSerializedContent
BaseRendererElement.EnsureModulesLoaded()
BaseRendererElement.BuildRenderTree(RenderTreeBuilder)
BaseRendererElement.OnElementNameChanged(BaseRendererElement, String, String)
BaseRendererElement.InvokeMethod(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodSync(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelper(String, String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelperSync(String, String, Object[], String[], ElementReference[])
BaseRendererElement.IsPropDirty(String)
BaseRendererElement.Serialize(SerializationContext, String)
BaseRendererElement.Serialize()
BaseRendererElement.EnsureValid()
BaseRendererElement.SetResourceStringAsync(String, String, String)
BaseRendererElement.SetResourceStringAsync(String, String)
BaseRendererElement.CompareEventCallbacks<T>(T, T, Dictionary<Type, Dictionary<String, FieldInfo>>)
BaseRendererElement.IgBlazor
BaseRendererElement.IsComponentRooted
BaseRendererElement.ParentTypeName
BaseRendererElement.UseDirectRender
BaseRendererElement.ChildContent
BaseRendererElement.SupportsVisualChildren
BaseRendererElement.Name
BaseRendererElement.Parent
BaseRendererElement.MethodTarget
BaseRendererElement.CurrParent
Namespace: IgniteUI.Blazor.Controls
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
Type Description
IgbColumn

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 Description
IgbColumn

Type

Declaration
public override string Type { get; }
Property Value
Type Description
System.String
Overrides
IgbBaseEventArgsDetail.Type

Methods

FindByName(String)

Declaration
public override object FindByName(string name)
Parameters
Type Name Description
System.String name
Returns
Type Description
System.Object
Overrides
IgbBaseEventArgsDetail.FindByName(String)

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
IgbBaseEventArgsDetail.FromEventJson(BaseRendererControl, Dictionary<String, Object>)

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
IgbBaseEventArgsDetail.ToEventJson(BaseRendererControl, Dictionary<String, Object>)

Implements

JsonSerializable