C#
VB
WinRT C#
C++
Enumeration that indicates the type of plasma effect, and the color pattern to use.
[FlagsAttribute()]
public enum PlasmaCommandFlags
<FlagsAttribute()>
Public Enum PlasmaCommandFlags
Inherits System.Enum
Implements System.IComparable, System.IConvertible, System.IFormattable
[FlagsAttribute()]
public enum PlasmaCommandFlags : System.IComparable, System.IConvertible, System.IFormattable
Leadtools.ImageProcessing.SpecialEffects.PlasmaCommandFlags = function() { };
Leadtools.ImageProcessing.SpecialEffects.PlasmaCommandFlags.prototype = {
Hue = 0x00000000,
Vertical = 0x00000000,
Horizontal = 0x00000001,
Diagonal = 0x00000002,
Cross = 0x00000003,
Circular = 0x00000004,
Random1 = 0x00000005,
Random2 = 0x00000006,
Rgb1 = 0x00000010,
Rgb2 = 0x00000020,
CustomColor = 0x00000030,
};
[FlagsAttribute()]
public enum class PlasmaCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Members
Value | Member | Description |
---|---|---|
0x00000000 | Hue | Use the first predefined color pattern. |
0x00000000 | Vertical | Create vertical lines of plasma. |
0x00000001 | Horizontal | Create horizontal lines of plasma. |
0x00000002 | Diagonal | Create diagonal lines of plasma. |
0x00000003 | Cross | Create crossed lines of plasma. |
0x00000004 | Circular | Create circles of plasma. |
0x00000005 | Random1 | Create randomly shaped plasma. |
0x00000006 | Random2 | Create a different type of randomly shaped plasma. |
0x00000010 | Rgb1 | Use the second predefined color pattern. |
0x00000020 | Rgb2 | Use the third predefined color pattern. |
0x00000030 | CustomColor | Use the frequency properties (RedFrequency, GreenFrequency, BlueFrequency) of the PlasmaCommand class to generate user-defined plasma colors. |
You can use a bitwise OR ( ¦ ) to specify one flag from each group.
Group | Flags |
Type of Plasma | Vertical, Horizontal, Diagonal, Cross, Circular, Random1, Random2 |
Color Patterns | Hue, Rgb1, Rgb2, CustomColor |
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