THotPDF.CurrentParagraph-ominaisuus

THotPDF.CurrentParagraph

THotPDF

Ylös Edellinen Seuraava

Antaa pääsyn asiakirjan nykyiseen kappaleeseen

Delphi syntax:

property CurrentParagraph: thpdf_para;

C++ syntax:

__property thpdf_para* CurrentParagraph;

Kuvaus

Käytä CurrentParagraph-ominaisuutta päästäksesi käsiksi kappaleen metodeihin ja ominaisuuksiin

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;