LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
PolarCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : PolarCommandFlags Enumeration



This enumeration indicates how to handle exposed areas and the type of conversion.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum PolarCommandFlags 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As PolarCommandFlags
C# 
[FlagsAttribute()]
public enum PolarCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class PolarCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
CartToPolarConvert the image from Cartesian (rectangular) coordinates to polar coordinates.
ColorFill any exposed areas with the color stored in the FillColor property of the PolarCommand class, or the fillColor parameter if you are using the appropriate Constructor).
NoChangeLeave the exposed area as is, without changing it.
PolarToCartConvert the image from polar coordinates to Cartesian (rectangular) coordinates.
RepeatStretch the image edges to fill the exposed area.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Exposed Areas Color, Repeat, NoChange
Conversion Type CartToPolar, PolarToCart

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.PolarCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also