Document Solutions for PDF
GrapeCity.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / Page Class / GetTable Method / GetTable(RectangleF,TableExtractOptions,Single,Single,Boolean) Method
The bounds within which to look for a table.
The table extraction options.
The horizontal resolution. This determines the unit of measurement used by horizontal values in options.
The vertical resolution. This determines the unit of measurement used by vertical values in options.
Indicates whether to ignore errors in PDF content streams.

In This Topic
    GetTable(RectangleF,TableExtractOptions,Single,Single,Boolean) Method
    In This Topic
    Tries to recognize a table within specified bounds, if the table is found returns an object that allows accessing the table's rows, columns and cells.
    Syntax
    'Declaration
     
    Public Overloads Function GetTable( _
       ByVal bounds As System.Drawing.RectangleF, _
       Optional ByVal options As TableExtractOptions, _
       Optional ByVal dpiX As System.Single, _
       Optional ByVal dpiY As System.Single, _
       Optional ByVal ignoreErrors As System.Boolean _
    ) As ITable
    public ITable GetTable( 
       System.Drawing.RectangleF bounds,
       TableExtractOptions options,
       System.float dpiX,
       System.float dpiY,
       System.bool ignoreErrors
    )

    Parameters

    bounds
    The bounds within which to look for a table.
    options
    The table extraction options.
    dpiX
    The horizontal resolution. This determines the unit of measurement used by horizontal values in options.
    dpiY
    The vertical resolution. This determines the unit of measurement used by vertical values in options.
    ignoreErrors
    Indicates whether to ignore errors in PDF content streams.

    Return Value

    The GrapeCity.Documents.Pdf.Recognition.Model.ITable object containing information about the table, or a null reference (Nothing in Visual Basic) if no table could be found within the specified bounds.
    See Also