Declaration
property Count: integer; (Read-only)
Description
Returns the number of images stored in the TIEMultiBitmap.
// 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] ));