←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#
VB
WinRT C#
C++
[FlagsAttribute()] 
public enum PlaneCommandFlags 
  
<FlagsAttribute()> 
Public Enum PlaneCommandFlags  
   Inherits System.Enum 
   Implements System.IComparable, System.IConvertible, System.IFormattable  
[FlagsAttribute()] 
public enum PlaneCommandFlags : System.IComparable, System.IConvertible, System.IFormattable   
Leadtools.ImageProcessing.SpecialEffects.PlaneCommandFlags = function() { }; 
Leadtools.ImageProcessing.SpecialEffects.PlaneCommandFlags.prototype = { 
 
  None = 0x00000000, 
    Color = 0x00000001, 
    NoChange = 0x00000002, 
    Left = 0x00000010, 
    Right = 0x00000020, 
    Up = 0x00000040, 
    Down = 0x00000080, 
     
 }; 
[FlagsAttribute()] 
public enum class PlaneCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable   

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 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly