This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum FreePlaneBendCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As FreePlaneBendCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum FreePlaneBendCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class FreePlaneBendCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Color | Fill any exposed areas with the fill color. |
| Horizontal | Stretch the pixels along the vertical plane. |
| HorizontalVertical | Stretch the pixels along the horizontal and vertical plane. |
| NoChange | Leave the exposed area as is, without changing it. |
| Repeat | Stretch the image edges to fill the exposed area. |
| Vertical | Stretch the pixels along the horizontal plane. |
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 |
| Flags that indicate the plane in which the stretching is to occur | Horizontal, Vertical, HorizontalVertical |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.FreePlaneBendCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code