Leadtools.Document Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
raise__verify Method
See Also 
Leadtools.Document Namespace > RasterDocumentEngine Class : raise__verify Method




value0
The source of the sender.
value1
A RasterDocumentVerifyEventArgs object that contains the event data.
The method that will handle the Verify event.

Syntax

Visual Basic (Declaration) 
Protected Sub raise__verify( _
   ByVal value0 As Object, _
   ByVal value1 As RasterDocumentVerifyEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterDocumentEngine
Dim value0 As Object
Dim value1 As RasterDocumentVerifyEventArgs
 
instance.raise__verify(value0, value1)
C# 
protected void raise__verify( 
   object value0,
   RasterDocumentVerifyEventArgs value1
)
Managed Extensions for C++ 
protected: void raise__verify( 
   Object* value0,
   RasterDocumentVerifyEventArgs* value1
) 
C++/CLI 
protected:
void raise__verify( 
   Object^ value0,
   RasterDocumentVerifyEventArgs^ value1
) 

Parameters

value0
The source of the sender.
value1
A RasterDocumentVerifyEventArgs object that contains the event data.

Remarks

When you create an Verify event, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.
Delegates are similar to the function pointers of C++ and have two main uses: performing callbacks, and defining events. Delegates are defined at run time.

Callback methods allow asynchronous processing: the method being called starts a thread and returns, during which time the thread does most of the work and calls the callback only when needed.
Events use a publish and subscribe type pattern. A class 'publishes' an event and any number of classes can 'subscribe' to that event. The runtime notifies subscribers when an event occurs. Delegates that are used in defining events must be defined as taking two arguments: a publisher object, and an event information object (derived from the .NET EventArgs class).

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

Leadtools.Documentrequires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features