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



Gets or sets the value that indicates the deskew angle precision on which the filter is applied. This value is only used when the user set the property Flags to DeskewCommandFlags.UseExtendedDeskew.

Syntax

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

Property Value

Value that indicates the Deskew angle precision on which the filter is applied. The valid range is from 1 to DeskewCommand.AngleRange (maximum deskew angle). The real value is divided by 10. This value is only used when the user set the property Flags to DeskewCommandFlags.UseExtendedDeskew.

Example

Refer to DeskewCommand.AngleRange 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