This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum FourierTransformDisplayCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As FourierTransformDisplayCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum FourierTransformDisplayCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class FourierTransformDisplayCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Log | Plot harmonics magnitudes using logarithmic scale. |
| Magnitude | Plot harmonics magnitude data. |
| None | No change. |
| Normal | Plot harmonics magnitudes using the normal linear scale. |
| Phase | Plot harmonics phase data. |
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Flags that represent the data to be shown | Magnitude, Phase |
| Flags that represent the plotting scale. These are ignored when Phase is set | Normal, Logarithm |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.FourierTransformDisplayCommandFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code