Array of short values that contains the lookup table.
Syntax
Visual Basic (Declaration) | |
---|
Public Property LookupTable As Short() |
C# | |
---|
public short[] LookupTable {get; set;} |
C++/CLI | |
---|
public:
property array<short>^ LookupTable {
array<short>^ get();
void set (shortarray<value>^ value);
} |
Return Value
Array of short values that contains the lookup table.
Its length determines the number of entries. All the pixels that are
greater than FirstStoredPixelValueMapped + (LookupTable->Length)
will be set to the last entry in the LookupTable (LookupTable[LookupTable->Length - 1]).
Example
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