Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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 Enum
Visual Basic (Usage) Copy Code
Dim instance As PunchCommandFlags
C#  
[FlagsAttribute()]
public enum PunchCommandFlags : Enum 
C++/CLI  
[FlagsAttribute()]
public enum class PunchCommandFlags : public Enum 

Members

Member Description
Color Fill any exposed areas with the color stored in the FillColor property of the PunchCommand class (or the fillColor parameter of the appropriate Constructor).
Repeat Stretch the image edges to fill the exposed area.
NoChange Leave the exposed area as is, without changing it.
Rotate Rotate the image inside the pinch pattern.
WithoutRotate Fill 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also