THotPDF.CurrentParagraph tulajdonság

 

THotPDF.CurrentParagraph

THotPDF

 

Tetejére Előző Következő

Hozzáférést biztosít az aktuális dokumentumbekezdéshez

 

Delphi szintaxis:

property CurrentParagraph: thpdf_para;

 

C++ szintaxis:

__property thpdf_para* CurrentParagraph;

 

Leírás

Használja a CurrentParagraph tulajdonságot a bekezdésmetódusok és -tulajdonságok eléréséhez

 

Code Example

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;