The OutputInformation object specifies information about the document.
Members/Properties
Name |
Description |
NotificationEvents |
The engine to use when applying XSL Transformations to generate XSL-FO from XML. |
Methods
Name |
Description |
Specifies whether the document is zipped. |
|
Returns the page count of a document. |
|
Interface that returns information from server, like log and progress. |
Specifies whether the output document is a ZIP archive.
public bool IsZipped;
Returns the page count of a document.
public int PageCount;
Note:
• | To efficiently get the number of pages in a document without rendering it, ComputePageCountOnly from RenderingParameters must be set to "true". |
Interface that needs to be implemented by you in order to receive rendering feedback.
public IServerNotificationEvents NotificationEvents;
Note:
• | Information about the interface can be found here. |
• | In order to retrieve rendering information from the server, the flag RenderingFeedback from RenderingParameters must be set accordingly. |