Using DynamicPDF™ Generator for .NET is very straight forward. The object model is similar to the COM version of our component and can be learned quickly. There are three common objects that are used: Document, Page, and Page Element objects. The Document object represents a PDF document. The Page object represents a page in the PDF document. The Page Element objects represent elements, such as text or graphics, that can be placed on a page. The program flow for generating a basic PDF document is outlined below:
- Create a Document object.
- Create a Page object.
- Create and add Page Element objects to the page.
- Add the Page object to the document.
- Go back to step 2 and repeat until all pages are created.
- Output the PDF document to a file, Stream object or to IIS's output stream.
Many useful page element classes are included with the product and can be found in the ceTe.DynamicPDF.PageElements and ceTe.DynamicPDF.PageElements.BarCoding namespaces. Custom Page Elements can be created by inheriting from the PageElement base class. This is discussed in the Custom Page Elements topic.
Page Elements can be reused on different pages using templates. For more information on templates see the Templates topic. There is also a Group object that can be used to logically group Page Elements together for reuse on multiple pages
| See Also |
Document Class | Page Class | Template Class | ceTe.DynamicPDF.PageElements Namespace | ceTe.DynamicPDF.PageElements.BarCoding Namespace | Custom Page Elements | Programming With Generator for .NET

