LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
ColoredBallsCommandFlags Enumeration
See Also  
Leadtools.ImageProcessing.SpecialEffects Namespace : ColoredBallsCommandFlags Enumeration



Flags that indicate the background color , shade (or gradient) type, ball type and ball color type.

This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum ColoredBallsCommandFlags 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As ColoredBallsCommandFlags
C# 
[FlagsAttribute()]
public enum ColoredBallsCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class ColoredBallsCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
BackGroundColorThe background is the color specified in the ColoredBallsCommand.BackGroundColor property.
BackGroundImageThe background is the same as the image.
BallBalls will adjust like bubbles.
BallsColorMaskThe ball colors will block the image colors.
BallsColorOpacityUse the opacity value when combining image colors with ball colors.
NoneNo flags.
ShadingCircularDraw shading as concentric circles.
ShadingEllipticalDraw shading as concentric ellipses.
ShadingLeftRightDraw shading as vertical lines that move from left to right.
ShadingSingleFill the background with the color specified in the ColoredBallsCommand.BackGroundColor property only.
ShadingTopBottomDraw shading as horizontal lines that move from top to bottom.
StickerBalls will overlap like stickers.

Remarks

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

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.SpecialEffects.ColoredBallsCommandFlags

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also