This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum ColoredBallsCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As ColoredBallsCommandFlags |
C# | |
---|---|
[FlagsAttribute()] public enum ColoredBallsCommandFlags : System.Enum, IComparable, IConvertible, IFormattable |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class ColoredBallsCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable |
Member | Description |
---|---|
BackGroundColor | The background is the color specified in the ColoredBallsCommand.BackGroundColor property. |
BackGroundImage | The background is the same as the image. |
Ball | Balls will adjust like bubbles. |
BallsColorMask | The ball colors will block the image colors. |
BallsColorOpacity | Use the opacity value when combining image colors with ball colors. |
None | No flags. |
ShadingCircular | Draw shading as concentric circles. |
ShadingElliptical | Draw shading as concentric ellipses. |
ShadingLeftRight | Draw shading as vertical lines that move from left to right. |
ShadingSingle | Fill the background with the color specified in the ColoredBallsCommand.BackGroundColor property only. |
ShadingTopBottom | Draw shading as horizontal lines that move from top to bottom. |
Sticker | Balls will overlap like stickers. |
You can use a bitwise OR (|) to specify one flag from each group.
Group | Flags |
Shading type | ShadingSingle, ShadingLeftRight, ShadingTopBottom, ShadingCircular, ShadingElliptical |
Ball type | Sticker, Ball |
Background type | BackGroundImage, BackGroundColor |
Ball color type | BallsColorMask, BallsColorOpacity |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.ColoredBallsCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7