LEADTOOLS Windows Forms (Leadtools.WinForms assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
InteractiveFloater Event
See Also 
Leadtools.WinForms Namespace > RasterImageViewer Class : InteractiveFloater Event



Occurs when the user is using the RasterImageViewer.InteractiveMode to move the RasterImageViewer.FloaterImage.

Syntax

Visual Basic (Declaration) 
Public Event InteractiveFloater As EventHandler(Of RasterViewerPointEventArgs)
Visual Basic (Usage)Copy Code
Dim instance As RasterImageViewer
Dim handler As EventHandler(Of RasterViewerPointEventArgs)
 
AddHandler instance.InteractiveFloater, handler
C# 
public event EventHandler<RasterViewerPointEventArgs> InteractiveFloater
C++/CLI 
public:
event EventHandler<RasterViewerPointEventArgs^>^ InteractiveFloater

Event Data

The event handler receives an argument of type RasterViewerPointEventArgs containing data related to this event. The following RasterViewerPointEventArgs properties provide information specific to this event.

PropertyDescription
Cancel (Inherited from Leadtools.WinForms.RasterViewerInteractiveEventArgs)Gets or sets a value indicating whether the interactive mode should be canceled.
Point Gets the interactive mode event data.
Status (Inherited from Leadtools.WinForms.RasterViewerInteractiveEventArgs)Gets the current status of the interactive mode.

Example

For an example, refer to FloaterPosition.

Remarks

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also