Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
FromPaletteIndex Method
See Also 
Leadtools Namespace > RasterColor Structure : FromPaletteIndex Method



index
The index value
Creates a new RasterColor object that is an index into a palette

Syntax

Visual Basic (Declaration) 
Public Shared Function FromPaletteIndex( _
   ByVal index As Integer _
) As RasterColor
Visual Basic (Usage)Copy Code
Dim index As Integer
Dim value As RasterColor
 
value = RasterColor.FromPaletteIndex(index)
C# 
public static RasterColor FromPaletteIndex( 
   int index
)
C++/CLI 
public:
static RasterColor FromPaletteIndex( 
   int index
) 

Parameters

index
The index value

Return Value

A new RasterColor object that is an index into a palette.

Example

For an example, refer to RasterImage.AnimationGlobalLoop

Remarks

A RasterColor object can be a true RGB color or an index value into the palette of an image.

If the value of IsPaletteIndex is true, then this color does not contain a true RGB value, instead, the value stored is an index into the palette of an image. To get the index value, use ToRgb.

If the value of IsPaletteIndex is false, then this color contains a true RGB value.

Use this method to create a color that is a palette index.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also