DocumentTableSet constructor

Contents
[ ]

init

Creates a new instance of this class loading all tables from a document using default DocumentTableOptions.

def __init__(self, document_path):
    ...
Parameter Type Description
document_path str The path to a document containing tables to be accessed.

init

Creates a new instance of this class loading all tables from a document using default DocumentTableOptions.

def __init__(self, document_stream):
    ...
Parameter Type Description
document_stream io.RawIOBase The stream containing a document with tables to be accessed.

init

Creates a new instance of this class.

def __init__(self, document_path, load_handler):
    ...
Parameter Type Description
document_path str The path to a document containing tables to be accessed.
load_handler IDocumentTableLoadHandler An IDocumentTableLoadHandler implementation controlling how document tables are loaded.

init

Creates a new instance of this class.

def __init__(self, document_stream, load_handler):
    ...
Parameter Type Description
document_stream io.RawIOBase The stream containing a document with tables to be accessed.
load_handler IDocumentTableLoadHandler An IDocumentTableLoadHandler implementation controlling how document tables are loaded.

See Also