[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Recognition.Model.ITableCell

Interface ITableCell

Namespace
GrapeCity.Documents.Pdf.Recognition.Model
Assembly
GcDocs.Pdf.dll

Represents a cell in an ITable.

public interface ITableCell

Properties

Col

Gets the 0-based index of the table column containing the current cell.

int Col { get; }

Property Value

int

Row

Gets the 0-based index of the table row containing the current cell.

int Row { get; }

Property Value

int

SpanCols

Gets the number of columns spanned by the current cell.

int SpanCols { get; }

Property Value

int

SpanRows

Gets the number of rows spanned by the current cell.

int SpanRows { get; }

Property Value

int

Text

Gets the cell text.

string Text { get; }

Property Value

string

Methods

GetBounds()

Returns the bounds of the cell on the page.

Quadrilateral GetBounds()

Returns

Quadrilateral

The cell bounds.