THPDFPage.Height Property

 

THPDFPage.Height

THPDFPage

 

Viršus  Ankstesnis  Kitas

Nurodo vertikalų puslapio dydį

 

Delphi syntax:

property Height: integer;

 

C++ syntax:

__property int Height;

 

Aprašas

Naudokite Height savybę, kad skaitytumėte arba keistumėte puslapio aukštį

 

Code Example

// Creating multi-size pages in a single PDF document
HPDF.AddPage( A4, poPortrait );
Label1.Caption := 'Page 1 = ' + IntToStr( HPDF.CurrentPage.Width ) + 'x' + IntToStr( HPDF.CurrentPage.Height );

HPDF.AddPage( Letter, poLandscape );
Label2.Caption := 'Page 2 = ' + IntToStr( HPDF.CurrentPage.Width ) + 'x' + IntToStr( HPDF.CurrentPage.Height );

 

See also: Width, Size