ImageEn, unit iexFolderMView

TImageEnMView.PortableDevices

TImageEnMView.PortableDevices


Declaration

property PortableDevices: TIEPortableDevices;


Description

Encapsulates the TIEPortableDevices component that is used when navigating connected devices.


Example

// Show the selected image in a TImageEnView
ID := IEFolderMView1.ImageID[ IEFolderMView1.SelectedImage ];
aMemStream := TMemoryStream.create;
try
  if IEFolderMView1.PortableDevices.CopyStreamFromDevice( ID, aMemStream ) then
    ImageEnView1.IO.LoadFromStream( aMemStream );
finally
  aMemStream.free;
end;