Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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 FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

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

Members

Member Description
None No flags.
ShadingSingle Fill the background with the color specified in the ColoredBallsCommand.BackGroundColor property only.
ShadingLeftRight Draw shading as vertical lines that move from left to right.
ShadingTopBottom Draw shading as horizontal lines that move from top to bottom.
ShadingCircular Draw shading as concentric circles.
ShadingElliptical Draw shading as concentric ellipses.
Sticker Balls will overlap like stickers.
Ball Balls will adjust like bubbles.
BackGroundImage The background is the same as the image.
BackGroundColor The background is the color specified in the ColoredBallsCommand.BackGroundColor property.
BallsColorMask The ball colors will block the image colors.
BallsColorOpacity Use the opacity value when combining image colors with ball colors.

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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also