This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum CubismCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As CubismCommandFlags |
C# | |
---|---|
[FlagsAttribute()] public enum CubismCommandFlags : System.Enum, IComparable, IConvertible, IFormattable |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class CubismCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable |
Member | Description |
---|---|
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. |
None | No change. |
Oriented | All cubes will have the orientation specified by the Angle property (or the angle parameter of the Constructor). |
Random | Cubes will have random orientation. |
Rectangle | Cubes will have rectangular shape. |
Square | Cubes will have square shape. |
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: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)