Leadtools.Windows.Controls Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.03.25
InteractiveZoomToEventHandler Delegate
See Also 
Leadtools.Windows.Controls Namespace : InteractiveZoomToEventHandler Delegate





sender
An Object which invokes this handler.
e
A BitmapSourceViewerPointEventArgs that contains the event data.
Represents the delegate for handlers that receive ZoomTo events.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub InteractiveZoomToEventHandler( _
   ByVal sender As Object, _
   ByVal e As BitmapSourceViewerPointEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New InteractiveZoomToEventHandler(AddressOf HandlerMethod)
C# 
public delegate void InteractiveZoomToEventHandler( 
   object sender,
   BitmapSourceViewerPointEventArgs e
)
Managed Extensions for C++ 
public: __gc __delegate void InteractiveZoomToEventHandler( 
   Object* sender,
   BitmapSourceViewerPointEventArgs* e
)
C++/CLI 
public delegate void InteractiveZoomToEventHandler( 
   Object^ sender,
   BitmapSourceViewerPointEventArgs^ e
)
XAML 
You cannot define a delegate in XAML.

Parameters

sender
An Object which invokes this handler.
e
A BitmapSourceViewerPointEventArgs that contains the event data.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also