THotPDF.CurrentParagraph – vlastnost

 

THotPDF.CurrentParagraph – vlastnost

THotPDF

 

Nahoru  Předchozí  Další

Poskytuje přístup k aktuálnímu odstavci dokumentu

 

Syntaxe Delphi:

property CurrentParagraph: thpdf_para;

 

Syntaxe C++:

__property thpdf_para* CurrentParagraph;

 

Popis

Vlastnost CurrentParagraph použijte pro přístup k metodám a vlastnostem odstavce

 

Příklad kódu

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;