THotPDF.CurrentParagraph Property

 

THotPDF.CurrentParagraph

THotPDF

 

Sus  Anterior  Următor

Oferă acces la paragraful curent al documentului

 

Sintaxă Delphi:

property CurrentParagraph: thpdf_para;

 

Sintaxă C++:

__property thpdf_para* CurrentParagraph;

 

Descriere

Folosiți proprietatea CurrentParagraph pentru a accesa metodele și proprietățile paragrafului

 

Exemplu de cod

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;