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



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

Syntax

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

Event Data

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

PropertyDescription
Image Gets an Leadtools.RasterImage object that references the affected image. Supported in Silverlight, Windows Phone 7
Length Gets the length (in pixels) of the line. Supported in Silverlight, Windows Phone 7
Region Gets a LEADTOOLS Leadtools.RasterRegion representing the line to be removed. Supported in Silverlight, Windows Phone 7
StartColumn Gets the starting column of the line. The columns are zero-based. Supported in Silverlight, Windows Phone 7
StartRow Gets the starting row of the line. The rows are zero-based. Supported in Silverlight, Windows Phone 7
Status Gets or sets a value that represents the status of the line remove process. 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