InteractiveFloater Event

Summary

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

Syntax

C#
C++/CLI
C++
public event EventHandler<RasterViewerPointEventArgs> InteractiveFloater 
public: 
event EventHandler<RasterViewerPointEventArgs^>^ InteractiveFloater 
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.

Remarks

Only occurs when the InteractiveMode property is set to RasterViewerInteractiveMode.Floater.

Example

C#
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Drawing; 
 
private void viewer_InteractiveFloater(object sender, RasterViewerPointEventArgs e) 
{ 
   // show information about the user interaction 
   RasterImageViewer viewer = sender as RasterImageViewer; 
   Console.WriteLine("Status: {0}, Canceled: {1}, Point: {2}, Floater Position: {3}", e.Status, e.Cancel, e.Point, viewer.FloaterPosition); 
} 
 
public void RasterImageViewer_FloaterPosition(RasterImageViewer viewer) 
{ 
   // hook into the viewer InteractiveFloater event to get updated whenever the user moves the floater. 
   viewer.InteractiveFloater += new EventHandler<RasterViewerPointEventArgs>(viewer_InteractiveFloater); 
 
   // add a floater the viewer and start the floater interactive mode 
   // we are going to create the floater image manually as a red ellipse with a region. 
 
   RasterColor[] palette = new RasterColor[0]; 
   RasterImage floaterImage = new RasterImage( 
      RasterMemoryFlags.Conventional, 
      200, 
      200, 
      24, 
      RasterByteOrder.Bgr, 
      RasterViewPerspective.TopLeft, 
      palette, 
      IntPtr.Zero, 
      0 
      ); 
 
   using (RasterImageGdiPlusGraphicsContainer container = new RasterImageGdiPlusGraphicsContainer(floaterImage)) 
   { 
      container.Graphics.FillRectangle(Brushes.Black, 0, 0, floaterImage.ImageWidth, floaterImage.ImageHeight); 
      container.Graphics.FillEllipse(Brushes.Red, 0, 0, floaterImage.ImageWidth, floaterImage.ImageHeight); 
   } 
 
   floaterImage.AddColorToRegion(RasterColor.FromKnownColor(RasterKnownColor.Red), RasterRegionCombineMode.Set); 
 
   viewer.FloaterImage = floaterImage; 
   viewer.FloaterVisible = true; 
   viewer.FloaterPosition = new Point(100, 100); 
   viewer.InteractiveMode = RasterViewerInteractiveMode.Floater; 
 
   MessageBox.Show("Click and move the floater"); 
} 

Requirements

Target Platforms

See Also

Reference

RasterImageViewer Class

RasterImageViewer Members

Help Version 22.0.2023.2.9
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.WinForms Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.