ImageEn, unit iewic

TIEWICReader.Close

TIEWICReader.Close


Declaration

procedure Close;


Description

Closes currently open stream or file freeing allocated resources.
This method is implicitly called by Free method.


Example

with TIEWICReader.Create do
begin
  Open( 'C:\input.wdp' );
  GetFrame(0, ImageEnView1.IEBitmap, ImageEnView1.IO.Params);
  Free; // Calls Close() implicitly
end;
ImageEnView1.Update;