ImageEn, unit iexPdfiumCore

TPdfObject.Height

TPdfObject.Height


Declaration

property Height: Double;


Description

Specifies the height of an object (in PDF points).

Note:
 The object matrix is used to calculate and set the height
 You can also use Scale to change the size of an object
 You must call ImageEnView1.Invalidate() after setting the size

Read/write


Example

// Double the size of an object
obj := ImageEnView1.PdfViewer.Objects[idx];
obj.Width  := obj.Width - * 2;
obj.Height := obj.Height - * 2;
ImageEnView1.Invalidate();

// Which is the same as...
ImageEnView1.PdfViewer.Objects.Scale( 2.0 );
ImageEnView1.Invalidate();


See Also

 X
 Y
 Width
 Matrix
 Scale
 Translate
 TransformEx