LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IsPaletteIndex Property
See Also 
Leadtools Namespace > RasterColor Structure : IsPaletteIndex Property



Gets a value that determines whether this RasterColor is a palette index value. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
<BrowsableAttribute(False)>
Public ReadOnly Property IsPaletteIndex As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterColor
Dim value As Boolean
 
value = instance.IsPaletteIndex
C# 
[BrowsableAttribute(false)]
public bool IsPaletteIndex {get;}
C++/CLI 
[BrowsableAttribute(false)]
public:
property bool IsPaletteIndex {
   bool get();
}

Property Value

true if this RasterColor is a palette index, false otherwise.

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.

To create a color that is a palette index, use the FromPaletteIndex method.

Requirements

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

See Also