Declaration
function GetBitmap(Index: Integer): TBitmap;
Description
Creates a
TBitmap object from the image at
Index.
You will need to call
ReleaseBitmap to free the
TBitmap object (and update the TImageEnMView if changes were made).
Example
// Save the fifth image to file
bmp := MBitmap.GetBitmap( 4 );
bmp.SaveToFile( 'alfa.bmp' );
MBitmap.ReleaseBitmap( 4, False );
See Also
◼ReleaseBitmap
◼GetTIEBitmap