| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum RasterPaletteWindowLevelFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As RasterPaletteWindowLevelFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum RasterPaletteWindowLevelFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class RasterPaletteWindowLevelFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| DicomStyle | Fill using the startColor and endColor parameters of RasterPalette.WindowLevelFillLookupTable colors only. |
| Exponential | Lookup table is exponential |
| Inside | Fill the lookup table between Low and High. ( inside the Low...High range ) |
| Linear | Lookup table is linear |
| Logarithmic | Lookup table is logarithmic |
| None | Default |
| Outside | Fill the LUT below the low and above high parameters of RasterPalette.WindowLevelFillLookupTable and everything in between. |
| Sigmoid | Lookup table is sigmoid |
| Signed | The lookup table data is signed |
These flags have a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Flags that indicate how the range is used to fill the LUT | Inside, Outside |
| Flags that indicate the LUT type | Linear, Exponential, Logarithmic, Sigmoid |
| Flags that indicate whether the LUT contains signed or unsigned data | Signed |
| Flag that indicate whether to fill the LUT only using the startColor and endColor colors parameters of RasterPalette.WindowLevelFillLookupTable as used in DICOM applications. | DicomStyle |
System.Object
System.ValueType
System.Enum
Leadtools.RasterPaletteWindowLevelFlags
Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7
Copy Code