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.
[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
Value | Member | Description |
---|---|---|
0x00000000 | None | (0x0000) No change. |
0x00000001 | Color | (0x0001) Use the FillColor as a background color. |
0x00000002 | NoChange | (0x0002) Use the image itself as a background. |
0x00000010 | Left | (0x0010) The plane will be displayed to the left of the Z-axis. |
0x00000020 | Right | (0x0020) The plane will be displayed to the right of the Z-axis. |
0x00000040 | Up | (0x0040) The plane will be displayed above the Z-axis. |
0x00000080 | Down | (0x0080) The plane will be displayed below 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 |
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET