Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
RasterImageChangedEventHandler Delegate
See Also 
Leadtools Namespace : RasterImageChangedEventHandler Delegate



sender
The source of the event.
e
A RasterImageChangedEventArgs that contains the event data.
Represents the method that will handle the RasterImage.Changed event.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub RasterImageChangedEventHandler( _
   ByVal sender As Object, _
   ByVal e As RasterImageChangedEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New RasterImageChangedEventHandler(AddressOf HandlerMethod)
C# 
public delegate void RasterImageChangedEventHandler( 
   object sender,
   RasterImageChangedEventArgs e
)
C++/CLI 
public delegate void RasterImageChangedEventHandler( 
   Object^ sender,
   RasterImageChangedEventArgs^ e
)

Parameters

sender
The source of the event.
e
A RasterImageChangedEventArgs that contains the event data.

Example

For an example, refer to RasterImage.Changed.

Remarks

The declaration of your event handler must have the same parameters as the RasterImageChangedEventHandler delegate declaration.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also