Struct RowColumnIndex
Holds the coordinates for a cell.
Inherited Members
Namespace: Syncfusion.Windows.Forms.CellGrid.ScrollAxis
Assembly: Syncfusion.Spreadsheet.Windows.dll
Syntax
public struct RowColumnIndex
Remarks
Maintains zero-based index of the rows and columns.
Constructors
RowColumnIndex(Int32, Int32)
Initializes a new RowColumnIndex with row and column coordinates.
Declaration
public RowColumnIndex(int r, int c)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | r | The row index. |
System.Int32 | c | The column index. |
Properties
ColumnIndex
The column index.
Declaration
public int ColumnIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Empty
Gets the empty instance with RowIndex and ColumnIndex set to int.MinValue
Declaration
public static RowColumnIndex Empty { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The empty. |
IsEmpty
Gets a value indicating whether this instance is empty.
Declaration
public bool IsEmpty { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
RowIndex
The row index.
Declaration
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Equals(Object)
Indicates whether this instance and a specified object are equal.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | Another object to compare to. |
Returns
Type | Description |
---|---|
System.Boolean | true if |
Overrides
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
ToString()
Returns the type name with state of this instance.
Declaration
public override string ToString()
Returns
Type |
---|
System.String |
Overrides
Operators
Equality(RowColumnIndex, RowColumnIndex)
Implements the operator ==.
Declaration
public static bool operator ==(RowColumnIndex r1, RowColumnIndex r2)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | r1 | The r1. |
RowColumnIndex | r2 | The r2. |
Returns
Type | Description |
---|---|
System.Boolean | The result of the operator. |
Inequality(RowColumnIndex, RowColumnIndex)
Implements the operator !=.
Declaration
public static bool operator !=(RowColumnIndex r1, RowColumnIndex r2)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | r1 | The r1. |
RowColumnIndex | r2 | The r2. |
Returns
Type | Description |
---|---|
System.Boolean | The result of the operator. |