DocumentTable constructor

Contents
[ ]

init

Creates a new instance of this class using default DocumentTableOptions.

def __init__(self, document_path, index_in_document):
    ...
Parameter Type Description
document_path str The path to a document containing the table to be accessed.
index_in_document int The zero-based index of the table in the document.

init

Creates a new instance of this class using default DocumentTableOptions.

def __init__(self, document_stream, index_in_document):
    ...
Parameter Type Description
document_stream io.RawIOBase The stream containing a document with the table to be accessed.
index_in_document int The zero-based index of the table in the document.

init

Creates a new instance of this class.

def __init__(self, document_path, index_in_document, options):
    ...
Parameter Type Description
document_path str The path to a document containing the table to be accessed.
index_in_document int The zero-based index of the table in the document.
options DocumentTableOptions A set of options controlling extraction of data from the table. If null, default options are applied.

init

Creates a new instance of this class.

def __init__(self, document_stream, index_in_document, options):
    ...
Parameter Type Description
document_stream io.RawIOBase The stream containing a document with the table to be accessed.
index_in_document int The zero-based index of the table in the document.
options DocumentTableOptions A set of options controlling extraction of data from the table. If null, default options are applied.

See Also