ImageEn, unit iexBitmaps

TIEMultiBitmap.ImageWidth

TIEMultiBitmap.ImageWidth


Declaration

property ImageWidth[idx: Integer]: Integer;


Description

Return the width of the image, idx.

See also: ImageHeight


Example

// 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] ));