This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Supported in Silverlight, Windows Phone 7Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum DisplacementCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As DisplacementCommandFlags |
C# | |
---|---|
[FlagsAttribute()] public enum DisplacementCommandFlags : System.Enum, IComparable, IConvertible, IFormattable |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class DisplacementCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable |
Member | Description |
---|---|
Color | Fill any exposed areas with fillColor. |
NoChange | Leave the exposed area as is, without changing it. |
Repeat | Stretch the image edges to fill the exposed area. |
StretchToFit | Stretch the displacement map image over the entire image area. |
Tile | Repeat the displacement map image to cover the image area. |
WrapAround | Fill any exposed area with the opposite side of the image. |
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 |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Effects.DisplacementCommandFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)