# ResultsTableCell Class

> `ResultsTableCell` is a public class which represents an extracted table cell.

`ResultsTableCell` is a public class which represents an extracted table cell.

## Definition

* Namespace: `UiPath.DocumentProcessing.Contracts.Results`
* Assembly: `UiPath.DocumentProcessing.Contracts`

## Description

A public class which represents an extracted table cell.

## Members

#### Constructors

* `ResultsTableCell` (`<int>, <int>, <bool>`) - Creates an automatically extracted missing table cell.
* `ResultsTableCell` (`UiPath.DocumentProcessing.Contracts.Results.ResultsValue[], <int>, <int>`) - Creates an automatically extracted table body cell.
* `ResultsTableCell` (`UiPath.DocumentProcessing.Contracts.Results.ResultsValue[], <int>, <int>, <bool>`) - Creates an automatically extracted cell.
* `ResultsTableCell` (`UiPath.DocumentProcessing.Contracts.Results.ResultsValue[], <int>, <int>, <bool>,UiPath.DocumentProcessing.Contracts.Results.ResultsDataSource, <int>, <bool>`) - Creates a table cell using the provided arguments.

#### Methods

* `GetValue()` - Returns the first cell value or null if the cell is missing.
* `GetValue` (`<int>`) - Returns the cell value at the specified index or null if the cell is missing.
* `SetValue(UiPath.DocumentProcessing.Contracts.Results.ResultsValue)` - Overwrites the current value(s) with the single specified value.

#### Properties

* `ColumnIndex` `<int>` - Indicates the column index.
* `DataSource` `<string>`- The source of the reported information.
* `DataVersion` `<int>` - The number of changes done to the cell. The version of an automatically extracted cell is 0, and is incremented for each subsequent manual modification.
* `IsHeader` `<bool>` - Indicates whether the cell is part of the header or not
* `IsMissing` `<bool>` - Flag specifying if the cell has any extracted values or not.
* `OperatorConfirmed` `<bool>` - Flag specifying if the user has reviewed the cell.
* `RowIndex` `<int>` - Indicates the row index.
* `Values` `<string>` -The values extracted for the table cell.
