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
// 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('page'+inttostr(count)+'.jpg');
Inc( count );
end;