TIEBitmap.UpdateFromTBitmap
Declaration
procedure UpdateFromTBitmap();
Description
Updates the TIEBitmap with the content of the embedded TBitmap object (
VclBitmap).
This is useful if you change VclBitmap and want to refresh TIEBitmap.
Note: If the PixelFormat of the bitmap is pfDevice, it will be converted to pf24bit
ImageEnView1.IEBitmap.VclBitmap.Width := 1000;
ImageEnView1.IEBitmap.UpdateFromTBitmap();
ImageEnView1.Update();