Show / Hide Table of Contents

Class Document.Types.Page.Types.Table.Types.TableCell

A cell representation inside the table.

Inheritance
System.Object
Document.Types.Page.Types.Table.Types.TableCell
Implements
IMessage<Document.Types.Page.Types.Table.Types.TableCell>
System.IEquatable<Document.Types.Page.Types.Table.Types.TableCell>
IDeepCloneable<Document.Types.Page.Types.Table.Types.TableCell>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class TableCell : IMessage<Document.Types.Page.Types.Table.Types.TableCell>, IEquatable<Document.Types.Page.Types.Table.Types.TableCell>, IDeepCloneable<Document.Types.Page.Types.Table.Types.TableCell>, IBufferMessage, IMessage

Constructors

TableCell()

Declaration
public TableCell()

TableCell(Document.Types.Page.Types.Table.Types.TableCell)

Declaration
public TableCell(Document.Types.Page.Types.Table.Types.TableCell other)
Parameters
Type Name Description
Document.Types.Page.Types.Table.Types.TableCell other

Properties

ColSpan

How many columns this cell spans.

Declaration
public int ColSpan { get; set; }
Property Value
Type Description
System.Int32

DetectedLanguages

A list of detected languages together with confidence.

Declaration
public RepeatedField<Document.Types.Page.Types.DetectedLanguage> DetectedLanguages { get; }
Property Value
Type Description
RepeatedField<Document.Types.Page.Types.DetectedLanguage>

Layout

[Layout][google.cloud.documentai.v1beta2.Document.Page.Layout] for [TableCell][google.cloud.documentai.v1beta2.Document.Page.Table.TableCell].

Declaration
public Document.Types.Page.Types.Layout Layout { get; set; }
Property Value
Type Description
Document.Types.Page.Types.Layout

RowSpan

How many rows this cell spans.

Declaration
public int RowSpan { get; set; }
Property Value
Type Description
System.Int32
Back to top