ImageEn, unit iexPdfiumCore

TPdfObject.Height

TPdfObject.Height

Declaration

property Height: Double;

Description

Specify 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

Read/write

Example

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

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

See Also

◼X
◼Y
◼Width
◼Matrix
◼Scale
◼Translate
◼TransformEx