Leadtools.ImageProcessing.Effects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
DisplacementCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.Effects Namespace : DisplacementCommandFlags Enumeration



Flags that indicate how to handle exposed areas, and the way to use the displacement map image.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

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

Members

MemberDescription
Color Fill any exposed areas with fillColor.
Repeat Stretch the image edges to fill the exposed area.
NoChange Leave the exposed area as is, without changing it.
WrapAround Fill any exposed area with the opposite side of the image.
StretchToFit Stretch the displacement map image over the entire image area.
Tile Repeat the displacement map image to cover the image area.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
GroupFlags
Flags that indicate how to handle exposed areasColor, Repeat, NoChange, WrapAround
Flags that indicate the way to use the displacement map imageStretchToFit, Tile

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Effects.DisplacementCommandFlags

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