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



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

Syntax

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

Event Data

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

PropertyDescription
BumpNick Gets a value that indicates whether to remove bumps or fill in nicks. Supported in Silverlight, Windows Phone 7
Direction Gets a value that indicates whether the element being smoothed is vertical or horizontal. Supported in Silverlight, Windows Phone 7
Image Gets the Leadtools.RasterImage object that references the affected image. Supported in Silverlight, Windows Phone 7
Length Gets the length (in pixels) of the bump or nick. Supported in Silverlight, Windows Phone 7
StartColumn Gets the starting column of the bump or nick. The columns are zero-based. Supported in Silverlight, Windows Phone 7
StartRow Gets the starting row of the bump or nick. The rows are zero-based. Supported in Silverlight, Windows Phone 7
Status Gets or sets a value that represents the status of the smoothing process. Supported in Silverlight, Windows Phone 7

Example

Refer to SmoothCommand.

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