Package org.apache.poi.hwmf.record
Class HwmfPalette.PaletteEntry
java.lang.Object
org.apache.poi.hwmf.record.HwmfPalette.PaletteEntry
- Enclosing class:
- HwmfPalette
-
Method Summary
Modifier and TypeMethodDescriptionint
init
(LittleEndianInputStream leis) boolean
Specifies that the low-order word of the logical palette entry designates a hardware palette index.boolean
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.boolean
Specifies that the logical palette entry be used for palette animation.
-
Method Details
-
init
- Throws:
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.
-