DocumentTable

DocumentTable(string, int)

Creates a new instance of this class using default DocumentTableOptions.

public DocumentTable(string documentPath, int indexInDocument)
Parameter Type Description
documentPath String The path to a document containing the table to be accessed.
indexInDocument Int32 The zero-based index of the table in the document.

See Also


DocumentTable(string, int, DocumentTableOptions)

Creates a new instance of this class.

public DocumentTable(string documentPath, int indexInDocument, DocumentTableOptions options)
Parameter Type Description
documentPath String The path to a document containing the table to be accessed.
indexInDocument Int32 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


DocumentTable(Stream, int)

Creates a new instance of this class using default DocumentTableOptions.

public DocumentTable(Stream documentStream, int indexInDocument)
Parameter Type Description
documentStream Stream The stream containing a document with the table to be accessed.
indexInDocument Int32 The zero-based index of the table in the document.

See Also


DocumentTable(Stream, int, DocumentTableOptions)

Creates a new instance of this class.

public DocumentTable(Stream documentStream, int indexInDocument, DocumentTableOptions options)
Parameter Type Description
documentStream Stream The stream containing a document with the table to be accessed.
indexInDocument Int32 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