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



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

Syntax

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

Event Data

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

PropertyDescription
BlackCount Gets the total number of black pixels in the inverted text region being processed. Supported in Silverlight, Windows Phone 7
BoundingRectangle Gets a rectangular structure that contains the bounding rectangle of the inverted text region being processed. Supported in Silverlight, Windows Phone 7
Image Gets an Leadtools.RasterImage object that references the affected image. Supported in Silverlight, Windows Phone 7
Region Gets a LEADTOOLS Leadtools.RasterRegion representing the inverted text to be removed. Dispose of this region when it is no longer needed. Supported in Silverlight, Windows Phone 7
Status Gets or sets the status of the inverted text process. Supported in Silverlight, Windows Phone 7
WhiteCount Gets the total number of white pixels in the inverted text region being processed. Supported in Silverlight, Windows Phone 7

Example

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