Class FreezeLineMovingEventArgs
Provides information about FreezeLineMoving event callback.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class FreezeLineMovingEventArgs : GridEventBaseArgs
Constructors
FreezeLineMovingEventArgs()
Declaration
public FreezeLineMovingEventArgs()
Properties
Cancel
Gets or sets whether the freeze line moving should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Direction
Gets the direction of the column freeze.
Declaration
public FreezeDirection Direction { get; set; }
Property Value
Type | Description |
---|---|
FreezeDirection |
EndIndex
Gets the end column index while dropping the frozen line.
Declaration
public double EndIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
FrozenColumns
Gets the frozen columns in the grid.
Declaration
public List<GridColumn> FrozenColumns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> |
StartIndex
Gets the start column index while dragging the frozen line.
Declaration
public double StartIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |