Show / Hide Table of Contents

Class Cell

A single cell in a table.

Inheritance
object
Cell
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class Cell

Properties

BoundingPolygon

Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type Description
BoundingPolygon
Remarks

Required

ColumnIndex

Declaration
[Required(ErrorMessage = "ColumnIndex is required.")]
[JsonProperty(PropertyName = "columnIndex")]
public int? ColumnIndex { get; set; }
Property Value
Type Description
int?

The index of the cell inside the column.

Remarks

Required

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score between 0 and 1.

Remarks

Required

RowIndex

Declaration
[Required(ErrorMessage = "RowIndex is required.")]
[JsonProperty(PropertyName = "rowIndex")]
public int? RowIndex { get; set; }
Property Value
Type Description
int?

The index of the cell inside the row.

Remarks

Required

Text

Declaration
[Required(ErrorMessage = "Text is required.")]
[JsonProperty(PropertyName = "text")]
public string Text { get; set; }
Property Value
Type Description
string

The text recognized in the cell.

Remarks

Required

WordIndexes

Declaration
[Required(ErrorMessage = "WordIndexes is required.")]
[JsonProperty(PropertyName = "wordIndexes")]
public List<int> WordIndexes { get; set; }
Property Value
Type Description
List<int>

The words detected in the cell.

Remarks

Required

In this article
Back to top