←Select platform

PlaneCommandFlags Enumeration

Summary
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
C#
C++/CLI
Python
[FlagsAttribute()] 
public enum PlaneCommandFlags 
[FlagsAttribute()] 
public enum class PlaneCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable   
class PlaneCommandFlags(Enum): 
   None = 0 
   Color = 1 
   NoChange = 2 
   Left = 16 
   Right = 32 
   Up = 64 
   Down = 128 
Members
ValueMemberDescription
0x00000000None(0x0000) No change.
0x00000001Color(0x0001) Use the FillColor as a background color.
0x00000002NoChange(0x0002) Use the image itself as a background.
0x00000010Left(0x0010) The plane will be displayed to the left of the Z-axis.
0x00000020Right(0x0020) The plane will be displayed to the right of the Z-axis.
0x00000040Up(0x0040) The plane will be displayed above the Z-axis.
0x00000080Down(0x0080) The plane will be displayed below 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
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.