This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum PointillistCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As PointillistCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum PointillistCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class PointillistCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| BackGroundColor | Fill the background by PointillistCommand.FillColor property only. |
| BackGroundImage | Use the same image as background. |
| None | No flags. |
| Point | Dots will interleave like bubbles. |
| Sticker | Dots will block each others like stickers. |
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Background Color | BackGroundImage, BackGroundColor |
| Dots type | Sticker, Point |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.PointillistCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code