CellIndex Struct
Definition
Represents a cell in a Avalonia.Controls.TreeDataGrid.
public struct CellIndex
Constructors
| Name | Description |
|---|---|
| CellIndex | Represents a cell in a Avalonia.Controls.TreeDataGrid. |
CellIndex Constructor
Represents a cell in a Avalonia.Controls.TreeDataGrid.
public CellIndex(int ColumnIndex, Avalonia.Controls.IndexPath RowIndex)
Parameters
ColumnIndex int
The index of the cell in the Avalonia.Controls.TreeDataGrid.Columns collection.
RowIndex Avalonia.Controls.IndexPath
The hierarchical index of the row model in the data source.
Methods
| Name | Description |
|---|---|
| Deconstruct | No summary available. |
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
Deconstruct Method
public void Deconstruct(int& ColumnIndex, Avalonia.Controls.IndexPath& RowIndex)
Parameters
ColumnIndex int&
RowIndex Avalonia.Controls.IndexPath&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.CellIndex other)
Parameters
other Avalonia.Controls.CellIndex
Returns
bool
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
ToString Method
public string ToString()
Returns
string
Properties
| Name | Description |
|---|---|
| ColumnIndex | The index of the cell in the Avalonia.Controls.TreeDataGrid.Columns collection. |
| RowIndex | The hierarchical index of the row model in the data source. |
ColumnIndex Property
The index of the cell in the Avalonia.Controls.TreeDataGrid.Columns collection.
public int ColumnIndex { get; set; }
RowIndex Property
The hierarchical index of the row model in the data source.
public Avalonia.Controls.IndexPath RowIndex { get; set; }