Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
RasterPaletteWindowLevelFlags Enumeration
See Also  
Leadtools Namespace : RasterPaletteWindowLevelFlags Enumeration




Indicates how the range is used to fill and type of the the lookup table and whether it contains signed or unsigned data.

Syntax

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

Members

MemberDescription
None Default
Inside Fill the lookup table between Low and High. ( inside the Low...High range )
Outside Fill the LUT below the low and above high parameters of RasterPalette.WindowLevelFillLookupTable and everything in between.
Linear Lookup table is linear
Exponential Lookup table is exponential
Logarithmic Lookup table is logarithmic
Sigmoid Lookup table is sigmoid
Signed The lookup table data is signed
DicomStyle Fill using the startColor and endColor parameters of RasterPalette.WindowLevelFillLookupTable colors only.

Remarks

These flags have a 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

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterPaletteWindowLevelFlags

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