This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum CubismCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum CubismCommandFlags : Enum |
Managed Extensions for C++ | |
---|---|
[FlagsAttribute()] __value public enum CubismCommandFlags : public Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class CubismCommandFlags : public Enum |
Member | Description |
---|---|
None | No change. |
Background | Use the image itself as the background. |
Color | Use the color in the Color property (or in the fillColor parameter in the Constructor) as the background color. |
Square | Cubes will have square shape. |
Rectangle | Cubes will have rectangular shape. |
Random | Cubes will have random orientation. |
Oriented | All cubes will have the orientation specified by the Angle property (or the angle parameter of the Constructor). |
You can use a bitwise OR (|) to specify one flag from each group.
Group | Flags |
Flags that indicate the background color | Background, Color |
Flags that indicate the cube's shape | Square, Rectangle |
Flags that indicate the cube's orientation | Random, Oriented |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Effects.CubismCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family