Class GridCurrentCellInfo
Implements the functionalities to hold the information about position of current cell, current cell renderer, and last active grid control.
Inheritance
System.Object
GridCurrentCellInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridCurrentCellInfo
Constructors
GridCurrentCellInfo(GridControlBase, GridCellRendererBase, Int32, Int32)
Initializes a new instance of GridCurrentCellInfo with position of current cell, current cell renderer, and last active grid control.
Declaration
public GridCurrentCellInfo(GridControlBase gridView, GridCellRendererBase cellView, int rowIndex, int colIndex)
Parameters
Type | Name | Description |
---|---|---|
GridControlBase | gridView | Last active grid control. |
GridCellRendererBase | cellView | Current cell renderer. |
System.Int32 | rowIndex | Row index. |
System.Int32 | colIndex | Column index. |
Properties
CellView
Gets or sets the current cell renderer.
Declaration
public GridCellRendererBase CellView { get; set; }
Property Value
Type |
---|
GridCellRendererBase |
ColIndex
Gets or sets the column index.
Declaration
public int ColIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
GridView
Gets or sets the last active grid control.
Declaration
public GridControlBase GridView { get; set; }
Property Value
Type |
---|
GridControlBase |
RowIndex
Gets or sets the row index.
Declaration
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |