You are here: GdPicture.NET > Documentation > Structs, Records, Enums > Enumerations > PaletteType Enumeration
logo.gif
ContentsIndexHome
PreviousUpNext
PaletteType Enumeration
C#
public enum PaletteType {
  PaletteTypeUndefined = 0,
  PaletteTypeHasAlpha = 1,
  PaletteTypeGrayScale = 2,
  PaletteTypeGrayScaleAlpha = 3,
  PaletteTypeHalfTone = 4,
  PaletteTypeHalfToneAlpha = 5
}
Visual Basic
Public Enum PaletteType
  PaletteTypeUndefined = 0
  PaletteTypeHasAlpha = 1
  PaletteTypeGrayScale = 2
  PaletteTypeGrayScaleAlpha = 3
  PaletteTypeHalfTone = 4
  PaletteTypeHalfToneAlpha = 5
End Enum

This is record PaletteType.

Members
Members 
Description 
PaletteTypeUndefined 
The palette type is undefined. 
PaletteTypeHasAlpha 
Indicates that the palette entries support alpha channel . 
PaletteTypeGrayScale 
Indicates that the palette is a grayscale palette. 
PaletteTypeGrayScaleAlpha 
Indicates that the palette is a grayscale palette with alpha channel support for his entries. 
PaletteTypeHalfTone 
Indicates that the palette is an half tone palette. 
PaletteTypeHalfToneAlpha 
Indicates that the palette is an half tone palette with alpha channel support for his entries. 
What do you think about this topic? Send feedback!
Copyright (c) 2009-2011 www.gdpicture.com. All rights reserved.