|
THotPDF.CreateParagraph
|
返回頂部 上一頁 下一頁 |
|
Creates new paragraph for PDF document.
Delphi 語法: function CreateParagraph ( Indention: Single; Justification: THPDFJustificationType; LeftMargin, RightMargin: Single ): Integer;
C++ 語法: int __fastcall CreateParagraph(float Indention, THPDFJustificationType Justification, float LeftMargin, float RightMargin, float TopMargin, float BottomMargin);
說明 Call CreateParagraph function to add new paragraph in PDF document. Indention, LeftMargin and RightMargin determines the paragraph settings ( see image below ), Justification determines default paragraph justification. Function CreateParagraph returns internal number of new paragraph.
Code Example
請參閱: BeginParagraph, EndParagraph, ParaAutoAddPage
|