FileDocCategorySizeDatePackage
CHPX.javaAPI DocApache Poi 3.0.11869Mon Jan 01 18:55:32 GMT 2007org.apache.poi.hwpf.model

CHPX

public class CHPX extends PropertyNode
Comment me
author
Ryan Ackley

Fields Summary
Constructors Summary
public CHPX(int fcStart, int fcEnd, byte[] grpprl)

    super(fcStart, fcEnd, new SprmBuffer(grpprl));
  
public CHPX(int fcStart, int fcEnd, SprmBuffer buf)

    super(fcStart, fcEnd, buf);
  
Methods Summary
public org.apache.poi.hwpf.usermodel.CharacterPropertiesgetCharacterProperties(org.apache.poi.hwpf.model.StyleSheet ss, short istd)

    CharacterProperties baseStyle = ss.getCharacterStyle(istd);
    CharacterProperties props = CharacterSprmUncompressor.uncompressCHP(baseStyle, getGrpprl(), 0);
    return props;
  
public byte[]getGrpprl()

    return ((SprmBuffer)_buf).toByteArray();
  
public org.apache.poi.hwpf.sprm.SprmBuffergetSprmBuf()

    return (SprmBuffer)_buf;