DocumentRenderer Class |
Namespace: Atalasoft.PdfDoc.Generating.Rendering
The DocumentRenderer type exposes the following members.
Name | Description | |
---|---|---|
DocumentRenderer | Initializes a new instance of the DocumentRenderer class |
Name | Description | |
---|---|---|
ErrorOccurred |
Gets or sets a value indicating whether an error occurred in the process of rendering a page. ErrorOccurred will be cleared
before rendering begins.
|
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
LLBeginDoc |
This method represents the Low-Level implementation of BeginDoc. It is called once at the start of rendering the document
after the first DocumentProgress event has been fired, but before the first page is rendered. If a document has an empty
Pages collection, LLBeginDoc will not be called. The default implementation does nothing.
| |
LLBeginPage |
This method represents the Low-Level implementation of BeginPage. A subclass of DocumentRenderer would implement this
method to do any processing to set up for rendering a given page. For exmaple, a particular rendered might need to
create GDI Graphics objects or clear a frame buffer before rendering a page.
| |
LLEndDoc |
This method represents the Low-Level implementation of EndDoc. It is called once at the end of rendering a document after
the final DocumentProgress event has been fired. If a document has an empty Pages collection, LLEndDoc will not be called.
A concrete implementation of DocumentRenderer could use this method for cleaning up temporary files created during the
rendering process.
| |
LLEndPage |
This method represents the Low-Level implementation of EndPage. A subclass of DocumentRenderer would implement this
method to do any processing to finish up after a page has been rendered. For example, a particular instance might need to
remove temporary files created earlier. The default implementation does nothing.
| |
LLGenerate |
This method represents the Low-Level implementation of code used to generate PDF content for a particular page.
A complete implementation of this method should call the GeneratePdf method of the page's DrawlingList property,
passing in the given PdfPageRenderer object. The default implementation does nothing.
| |
MakePageRenderer |
Makes the PdfPageRenderer that will be used for each page being rendered. When rendering a document, MakeWriter will be called
once for every page that is rendered. A concrete implementation of DocumentRenderer must implement this method.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnDocumentProgress |
Raises the [E:DocumentProgress] event.
| |
Render(PdfGeneratedDocument) |
Renders the entire PdfGeneratedDocument.
| |
Render(PdfGeneratedDocument, ICollectionBasePage) |
Renders a subset of pages from the specified document. This method is intended to allow the rendering of a subset
of pages from a document. If pages is an empty enumeration, the output is undefined.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
DocumentProgress |
Occurs when progress is made in the overall process of rendering the document. This event is fired when rendering starts, when rendering
completes, when each page starts and when each page completes. If the document contains no pages, then precisely one DocumentProgress
event will be fired.
|