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



Handles border information that will be removed. Supported in Silverlight, Windows Phone 7

Syntax

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

Event Data

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

PropertyDescription
Border (Read only) Gets a flag that indicates which border is being processed. Supported in Silverlight, Windows Phone 7
BoundingRectangle (Read only) Gets a Leadtools.LeadRect structure that contains the bounding rectangle of the border being processed. Supported in Silverlight, Windows Phone 7
Image (Read only) Gets the RasterImage object that references the affected image. Supported in Silverlight, Windows Phone 7
Region (Read only) Gets the LEADTOOLS Leadtools.RasterRegion representing the border to be removed. Supported in Silverlight, Windows Phone 7
Status Gets or sets the status of the border 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