THotPDF.CurrentParagraph Property

 

THotPDF.CurrentParagraph

THotPDF

 

Arriba  Anterior  Siguiente

Gives access to the current document paragraph.

 

Sintaxis Delphi:

property CurrentParagraph: thpdf_para;

 

Sintaxis C++:

__property thpdf_para* CurrentParagraph;

 

Descripción

Usa la propiedad CurrentParagraph para acceder a los métodos y propiedades de párrafo

 

Ejemplo de código

HPDF.CreateParagraph( 50, 700, 500, 600 );          // Create paragraph with margins
HPDF.CurrentParagraph.Justification := hjJustify;
HPDF.CurrentParagraph.ShowText( 'This is the current paragraph text that will be formatted within the defined boundaries.' );
HPDF.CurrentParagraph.NewLine;