LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
DotRemove Event
See Also 
Leadtools.ImageProcessing.Core Namespace > DotRemoveCommand Class : DotRemove Event



Optional delegate method for additional processing. Supported in Silverlight, Windows Phone 7

Syntax

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

Event Data

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

PropertyDescription
BlackCount Gets the total number of black pixels in the dot being processed. Supported in Silverlight, Windows Phone 7
BoundingRectangle Gets the bounding rectangle of the dot being processed. Supported in Silverlight, Windows Phone 7
Image Gets the Leadtools.RasterImage object that references the image to be modified. Supported in Silverlight, Windows Phone 7
Region Gets the LEADTOOLS Leadtools.RasterRegion representing the dot to be removed. Supported in Silverlight, Windows Phone 7
Status Gets or sets a value that indicates the status of the dot removal process. Supported in Silverlight, Windows Phone 7
WhiteCount Gets the total number of white pixels in the dot being processed. Supported in Silverlight, Windows Phone 7

Example

Refer to DotRemoveCommand.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also