ImageEn, unit ietwain

TIETwainParams.FeederLoaded

TIETwainParams.FeederLoaded

Declaration

property FeederLoaded: Boolean;

Description

Retures True when there are documents loaded in the feeder of the source.

Twain Property: CAP_FEEDERLOADED

Note: Use IsCapabilitySupported to determine if this capability is supported by the current scanner

Example

// Use of TImageEnIO (instead of TImageEnMIO) to acquire and save multi pages
while ImageEnView1.IO.TwainParams.FeederLoaded do
begin
  ImageEnView1.IO.Acquire();
  ImageEnView1.IO.SaveToFile('D:\Page' + IntToStr( count ) + '.jpg');
  Inc( count );
end;