Leadtools.Twain Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.8.31
AcquireMultiPage Event
See Also 
Leadtools.Twain Namespace > TwainSession Class : AcquireMultiPage Event




(Document/Medical only) Occurs twice for each scanned page, if the EnableAcquireMultiPageEvent property is set to true.

Syntax

Visual Basic (Declaration) 
Public Event AcquireMultiPage() As EventHandler(Of TwainAcquireMultiPageEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As TwainSession
Dim handler As EventHandler(Of TwainAcquireMultiPageEventArgs)
 
AddHandler instance.AcquireMultiPage, handler
C# 
public event EventHandler<TwainAcquireMultiPageEventArgs> AcquireMultiPage()
Managed Extensions for C++ 
public: __event EventHandler<TwainAcquireMultiPageEventArgs>* AcquireMultiPage();
C++/CLI 
public:
event EventHandler<TwainAcquireMultiPageEventArgs>^ AcquireMultiPage();

Example

Remarks

This event will be fired two times. The event is fired the first time when the TWAIN source begins scanning the page. The event is fired the second time when the TWAIN source has finished scanning the page.

For more information, refer to How to Acquire from the Twain Source.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also