[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Recognition.Model.ITable

Interface ITable

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

Represents a recognized table.

public interface ITable

Properties

Cells

Gets the list of table cells.

IReadOnlyList<ITableCell> Cells { get; }

Property Value

System.Collections.Generic.IReadOnlyList<T><ITableCell>

Cols

Gets the list of table columns.

IReadOnlyList<ITableCol> Cols { get; }

Property Value

System.Collections.Generic.IReadOnlyList<T><ITableCol>

Rows

Gets the list of table rows.

IReadOnlyList<ITableRow> Rows { get; }

Property Value

System.Collections.Generic.IReadOnlyList<T><ITableRow>

Methods

GetBounds()

Returns the bounds of the table on the page.

Quadrilateral GetBounds()

Returns

Quadrilateral

The table bounds.

GetCell(int, int)

Gets the cell at a specified position.

ITableCell GetCell(int row, int col)

Parameters

row int

The row index.

col int

The column index.

Returns

ITableCell

The ITableCell at the specified position.