[]
Loads the document from a stream.
public void LoadDocument(Stream stream, DocumentFormat format)
Type | Name | Description |
---|---|---|
Stream | stream | The stream containing the report. Note: The Page report with master file should contain the full path to the master file. |
DocumentFormat | format | The document format. |
Loads a report from the specified file path.
public void LoadDocument(string filePath)
Type | Name | Description |
---|---|---|
string | filePath | The file to load. |
Type | Condition |
---|---|
ArgumentNullException | Thrown if the |
Loads a report from the specified IDocumentLoader parameter.
public void LoadDocument(IDocumentLoader parameter)
Type | Name | Description |
---|---|---|
IDocumentLoader | parameter | The document loader parameter. |
Loads the specified page document.
public void LoadDocument(PageDocument pageDocument)
Type | Name | Description |
---|---|---|
PageDocument | pageDocument | The page document to load. |
Loads the specified page report.
public void LoadDocument(PageReport pageReport)
Type | Name | Description |
---|---|---|
PageReport | pageReport | The page report to load. |
Loads the specified section report.
public void LoadDocument(SectionReport report)
Type | Name | Description |
---|---|---|
SectionReport | report | The section report to load. |
Loads the specified section document.
public void LoadDocument(SectionDocument document)
Type | Name | Description |
---|---|---|
SectionDocument | document | The section document to load. |