LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
PlaneCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : PlaneCommandFlags Enumeration



Enumeration that indicates the background color and the planes to be shown. You can use a bit wise OR (|) to specify one flag from each group.

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

Syntax

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

Members

MemberDescription
ColorUse the FillColor as a background color.
DownThe plane will be displayed below the Z-axis.
LeftThe plane will be displayed to the left of the Z-axis.
NoChangeUse the image itself as a background.
NoneNo change.
RightThe plane will be displayed to the right of the Z-axis.
UpThe plane will be displayed above the Z-axis.

Remarks

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

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.PlaneCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also