THPDFPage.Height
THPDFPage
ページの垂直サイズを指定します。
Delphi 構文:
property Height: integer;
C++ 構文:
__property int Height;
説明
ページの高さの読み取りまたは変更には、Height プロパティを使用します。
// 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