Struct GridCellPos
Implements the coordinates for a cell. Is used by GridVolatileData to look up cell information.
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
System.ValueType.Equals(System.Object)
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public struct GridCellPos
Constructors
GridCellPos(Int32, Int32)
Initializes a new GridCellPos with row and column coordinates.
Declaration
public GridCellPos(int r, int c)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | r | The row index. |
System.Int32 | c | The column index. |
Properties
ColumnNumber
Gets or sets the column index.
Declaration
public int ColumnNumber { get; set; }
Property Value
Type |
---|
System.Int32 |
Info
Gets results of ToString method.
Declaration
public string Info { get; }
Property Value
Type |
---|
System.String |
RowNumber
Gets or sets the row index.
Declaration
public int RowNumber { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
GetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | A 32-bit signed integer that is the hash code for this instance. |
Overrides
System.ValueType.GetHashCode()
ToString()
Returns the fully qualified type name of this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String containing a fully qualified type name. |
Overrides
System.ValueType.ToString()