Online Documentation for Advanced PDF Generator for RAD Studio

TQuickPdfDocument.Section

 

TQuickPDFDocument                


property Section[Index: Integer]: TRenderCell;

 

Description

Technically, all the document is represented as a one-column table. The first row is the document header, the last is the footer, and all the intervening rows are document sections. The Section property is an array of all the document sections. You can access them by index using this property. As a matter of fact, the Section[Index] returns the first cell in the Index+1 row of the main document table defined by the MainTable property. Each section begins from the new page, so you can use sections to manually break your document to pages. The Sections property is read-only and accessible only at runtime.

 


See also:

Footer

Header

MainTable

TRenderCell Class