LEADTOOLS Image Processing (Leadtools.ImageProcessing.Effects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
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 System.FlagsAttribute attribute that allows a bitwise combination of its member values.

Supported in Silverlight, Windows Phone 7

Syntax

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

Members

MemberDescription
ColorFill any exposed areas with fillColor.
NoChangeLeave the exposed area as is, without changing it.
RepeatStretch the image edges to fill the exposed area.
StretchToFitStretch the displacement map image over the entire image area.
TileRepeat the displacement map image to cover the image area.
WrapAroundFill any exposed area with the opposite side of the image.

Remarks

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

Inheritance Hierarchy

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

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