THotPDF.OutlineRoot-egenskab

 

THotPDF.OutlineRoot

THotPDF

 

Øverst  Forrige  Næste
Placeholder for topic body

Bestemmer roden af dispositioner

 

Delphi-syntaks:

property OutlineRoot: THPDFDocOutlineObject;

 

C++-syntaks:

__property THPDFDocOutlineObject* OutlineRoot;

 

Beskrivelse

Brug OutlineRoot til at få rodobjektet for dispositionerne

 

Kodeeksempel


var
  Chapter1, Section1, Section2: THPDFDocOutlineObject;
begin
  Chapter1 := HPDF.OutlineRoot.AddChild( 'Chapter 1', 1 );    // Add chapter to outline root
  Section1 := Chapter1.AddChild( 'Section 1.1', 1 );          // Add section to chapter
  Section2 := Chapter1.AddChild( 'Section 1.2', 1 );          // Add another section
  Chapter1.Opened := true;                                    // Expand chapter in outline
end;