Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Rectangle Property
See Also 
Leadtools.ImageProcessing.Core Namespace > FrequencyFilterCommand Class : Rectangle Property



Gets or sets a rectangle structure that contains the filter dimension that will be applied.

Syntax

Visual Basic (Declaration) 
Public Property Rectangle As Rectangle
Visual Basic (Usage)Copy Code
Dim instance As FrequencyFilterCommand
Dim value As Rectangle
 
instance.Rectangle = value
 
value = instance.Rectangle
C# 
public Rectangle Rectangle {get; set;}
C++/CLI 
public:
property Rectangle Rectangle {
   Rectangle get();
   void set (Rectangle value);
}

Return Value

Rectangle structure that contains the filter dimension that will be applied, it represents the frequency range to be kept or removed. The left value refers to the minimum X harmonic, the right refers to the maximum X harmonic, the top refers to the minimum Y harmonic and the bottom refers to the maximum Y harmonic. The maximum X harmonic equals Width -1 and the maximum Y harmonic equals Height -1.

Example

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also