This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum GlassEffectCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As GlassEffectCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum GlassEffectCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class GlassEffectCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| HeightFrequency | The CellHeight property or the cellHeight parameter is the number of cells along the height of the image. |
| HeightPeriod | The CellHeight property or the cellHeight parameter is the height of the cell in pixels. |
| None | Reserved. |
| WidthFrequency | The CellWidth property or cellWidth parameter is the number of cells along the width of the image. |
| WidthPeriod | The CellWidth property or the cellWidth parameter is the width of the cell in pixels. |
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Flags that indicate the type of data in the CellWidth property or the cellWidth parameter of the Constructor | WidthFrequency, WidthPeriod |
| Flags that indicate the type of data in the CellHeight property or the cellHeight parameter of the Constructor | HeightFrequency, HeightPeriod |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.SpecialEffects.GlassEffectCommandFlags
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