This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum PlaneCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
Dim instance As PlaneCommandFlags  | |
| C# | |
|---|---|
[FlagsAttribute()] public enum PlaneCommandFlags : System.Enum, IComparable, IConvertible, IFormattable  | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class PlaneCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable  | |
| Member | Description | 
|---|---|
| Color | Use the FillColor as a background color. | 
| Down | The plane will be displayed below the Z-axis. | 
| Left | The plane will be displayed to the left of the Z-axis. | 
| NoChange | Use the image itself as a background. | 
| None | No change. | 
| Right | The plane will be displayed to the right of the Z-axis. | 
| Up | The plane will be displayed above the Z-axis. | 
You can use a bitwise OR (|) to specify one flag from each group.
    
        
            | Group | Flags | 
| Flags that indicate the background color | Color, NoChange | 
| Flags that indicate which planes (with respect to the Z-axis) will be shown. | Left, Right, Down, Up | 
System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.PlaneCommandFlags
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