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



Enumeration that indicates how to handle exposed areas, both centrally and peripherally.

Syntax

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

Members

MemberDescription
ColorFill any exposed areas with the color stored in the FillColor property of the PunchCommand class (or the fillColor parameter of the appropriate Constructor).
NoChangeLeave the exposed area as is, without changing it.
RepeatStretch the image edges to fill the exposed area.
RotateRotate the image inside the pinch pattern.
WithoutRotateFill the exposed center the same way the peripherally exposed areas are filled.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Peripherally Exposed Areas Color, Repeat, NoChange
Centrally Exposed Areas Rotate, WithoutRotate

Inheritance Hierarchy

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

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