DocumentTableSet

DocumentTableSet(string)

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

public DocumentTableSet(string documentPath)
Parameter Type Description
documentPath String The path to a document containing tables to be accessed.

See Also


DocumentTableSet(string, IDocumentTableLoadHandler)

Creates a new instance of this class.

public DocumentTableSet(string documentPath, IDocumentTableLoadHandler loadHandler)
Parameter Type Description
documentPath String The path to a document containing tables to be accessed.
loadHandler IDocumentTableLoadHandler An IDocumentTableLoadHandler implementation controlling how document tables are loaded.

See Also


DocumentTableSet(Stream)

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

public DocumentTableSet(Stream documentStream)
Parameter Type Description
documentStream Stream The stream containing a document with tables to be accessed.

See Also


DocumentTableSet(Stream, IDocumentTableLoadHandler)

Creates a new instance of this class.

public DocumentTableSet(Stream documentStream, IDocumentTableLoadHandler loadHandler)
Parameter Type Description
documentStream Stream The stream containing a document with tables to be accessed.
loadHandler IDocumentTableLoadHandler An IDocumentTableLoadHandler implementation controlling how document tables are loaded.

See Also