THotPDF.CurrentParagraph-egenskab

 

THotPDF.CurrentParagraph

THotPDF

 

Øverst  Forrige  Næste
Placeholder for topic body

Giver adgang til det aktuelle dokumentafsnit

 

Delphi-syntaks:

property CurrentParagraph:thpdf_para;

 

C++-syntaks:

__property thpdf_para* CurrentParagraph;

 

Beskrivelse

Brug CurrentParagraph-egenskaben til at få adgang til afsnitsmetoder og -egenskaber

 

Kodeeksempel

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;