Package org.apache.poi.hwmf.record
Class HwmfPalette.PaletteEntry
- java.lang.Object
-
- org.apache.poi.hwmf.record.HwmfPalette.PaletteEntry
-
- Enclosing class:
- HwmfPalette
public static class HwmfPalette.PaletteEntry extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intinit(LittleEndianInputStream leis)booleanisExplicit()Specifies that the low-order word of the logical palette entry designates a hardware palette index.booleanisNoCollapse()Specifies that the color be placed in an unused entry in the system palette instead of being matched to an existing color in the system palette.booleanisReserved()Specifies that the logical palette entry be used for palette animation.
-
-
-
Method Detail
-
init
public int init(LittleEndianInputStream leis) throws java.io.IOException
- Throws:
java.io.IOException
-
isReserved
public boolean isReserved()
Specifies that the logical palette entry be used for palette animation. This value prevents other windows from matching colors to the palette entry because the color frequently changes. If an unused system-palette entry is available, the color is placed in that entry. Otherwise, the color is not available for animation.
-
isExplicit
public boolean isExplicit()
Specifies that the low-order word of the logical palette entry designates a hardware palette index. This value allows the application to show the contents of the display device palette.
-
isNoCollapse
public boolean isNoCollapse()
Specifies that the color be placed in an unused entry in the system palette instead of being matched to an existing color in the system palette. If there are no unused entries in the system palette, the color is matched normally. Once this color is in the system palette, colors in other logical palettes can be matched to this color.
-
-