# TableRow Class

> TableRow facade in the V1 navigator for a single table row, providing access to its cells by column index or column lookup.

## Definition

* Namespace: `UiPath.DocumentProcessing.Contracts.Extensions.Navigator.V1`
* Assembly: `UiPath.DocumentProcessing.Contracts`
* Inherits: [ResultsValueFacadeBase](resultsvaluefacadebase-class.md)

## Description

`TableRow` is a facade for a single row of a table value. It wraps a [ResultsValue](results-value-class.md) and provides access to the row's cells as [BasicDataPoint](basicdatapoint-class.md) objects, by column index or by column lookup.

A `TableRow` is typically obtained from the `Rows` property or `GetRow(...)` method of [TableValue](tablevalue-class.md).

## Members

### Constructors

| Constructor | Description |
|---|---|
| `TableRow(ResultsValue value)` | Initializes a new instance wrapping the specified row value. |

### Properties

| Property | Type | Description |
|---|---|---|
| `Cells` | [BasicDataPoint](basicdatapoint-class.md)`[]` | All cells of the row. Read-only. |
| `this[int columnIndex]` | [BasicDataPoint](basicdatapoint-class.md) | The cell at the specified column index, through indexer syntax. Read-only. |
| `this[string columnLookup]` | [BasicDataPoint](basicdatapoint-class.md) | The cell at the specified column lookup, through indexer syntax. Read-only. |

### Methods

| Method | Returns | Description |
|---|---|---|
| `GetCell(int columnIndex)` | [BasicDataPoint](basicdatapoint-class.md) | Returns the cell at the specified column index. |
| `GetCell(string columnLookup)` | [BasicDataPoint](basicdatapoint-class.md) | Returns the cell matching the specified column lookup. |

### Inherited members

Confidence, content reference, derived fields, and validator properties (`Confidence`, `OcrConfidence`, `OperatorConfirmed`, `Reference`, `DerivedFields`, `ValidatorNotes`, `ValidatorNotesInfo`) and `GetRawResultsValue()` are inherited from [ResultsValueFacadeBase](resultsvaluefacadebase-class.md). Column lookups follow the resolution rules in [FieldLookupBase](fieldlookupbase-class.md).
