DataGridExtensions Class
Represents a set of helper extension methods for the DataGrid.
public static class DataGridExtensions
- Inheritance:
- object object
Methods
GetRow(DataGrid, int)
Gets the DataGridRow at the specified index.
public static DataGridRow GetRow(this DataGrid dataGrid, int index)
| Parameter | Type | Description |
|---|---|---|
| dataGrid | DataGrid | The |
| index | int | The index of the |
Returns
- DataGridRow:
The
DataGridRowat the specified index.
GetRow(DataGrid, object)
Gets the DataGridRow for the specified item.
public static DataGridRow GetRow(this DataGrid dataGrid, object item)
| Parameter | Type | Description |
|---|---|---|
| dataGrid | DataGrid | The |
| item | object | The item. |
Returns
- DataGridRow:
The
DataGridRowfor the specified item.