Class FreezeLineMovedEventArgs
Provides information about FreezeLineMoved event callback.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class FreezeLineMovedEventArgs : GridEventBaseArgs
Constructors
FreezeLineMovedEventArgs()
Declaration
public FreezeLineMovedEventArgs()
Properties
Direction
Gets the direction of the column freeze.
Declaration
public FreezeDirection Direction { get; }
Property Value
Type | Description |
---|---|
FreezeDirection | The FreezeDirection of the columns. Possible values include:
|
EndIndex
Gets the index of the ending column while dropping the frozen line.
Declaration
public int EndIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the ending column while dropping the frozen line. |
FrozenColumns
Gets the frozen columns in the grid.
Declaration
public List<GridColumn> FrozenColumns { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A list of frozen columns in the grid. |
StartIndex
Gets the index of the starting column while dragging the frozen line.
Declaration
public int StartIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the starting column while dragging the frozen line. |