TIEMultiBitmap.ImageHeight
Declaration
property ImageHeight[idx: Integer]: Integer;
Description
Return the height of the image,
idx.
See also:
ImageWidth// Output sizes of all images to a Listbox
for i := 0 to mbmp.Count - 1 do
ListBox1.Items.Add( IntToStr( mbmp.ImageWidth[i] ) + 'x' + IntToStr( mbmp.ImageHeight[i] ));