Package org.apache.poi.hwpf.model

Examples of org.apache.poi.hwpf.model.Colorref


      case 0x6f:
        newCHP.setIdctHint ((byte) sprm.getOperand());
        break;
        case 0x70:
            // sprmCCv -- 0x6870
            newCHP.setCv( new Colorref( sprm.getOperand() ) );
            break;
      case 0x71:
        // sprmCShd
        break;
      case 0x72:
View Full Code Here


    protected Colorref field_2_cvBack;
    protected int field_3_ipat;

    protected SHDAbstractType()
    {
        this.field_1_cvFore = new Colorref();
        this.field_2_cvBack = new Colorref();
    }
View Full Code Here

        this.field_2_cvBack = new Colorref();
    }

    protected void fillFields( byte[] data, int offset )
    {
        field_1_cvFore                 = new Colorref(data, 0x0 + offset);
        field_2_cvBack                 = new Colorref(data, 0x4 + offset);
        field_3_ipat                   = LittleEndian.getShort(data, 0x8 + offset);
    }
View Full Code Here

    protected int field_68_wCharScale;

    protected CHPAbstractType()
    {
        this.field_2_hps = 20;
        this.field_8_cv = new Colorref();
        this.field_11_lidDefault = 0x0400;
        this.field_12_lidFE = 0x0400;
        this.field_20_hresi = new Hyphenation();
        this.field_23_shd = new ShadingDescriptor();
        this.field_24_brc = new BorderCode();
View Full Code Here

    /**
     * Set the ico24 field for the CHP record.
     */
    public void setIco24( int colour24 )
    {
        setCv( new Colorref( colour24 & 0xFFFFFF ) );
    }
View Full Code Here

    /**
     * Set the ico24 field for the CHP record.
     */
    public void setIco24( int colour24 )
    {
        setCv( new Colorref( colour24 & 0xFFFFFF ) );
    }
View Full Code Here

      case 0x6f:
        newCHP.setIdctHint ((byte) sprm.getOperand());
        break;
        case 0x70:
            // sprmCCv -- 0x6870
            newCHP.setCv( new Colorref( sprm.getOperand() ) );
            break;
      case 0x71:
        // sprmCShd
        break;
      case 0x72:
View Full Code Here

    protected int field_68_wCharScale;

    protected CHPAbstractType()
    {
        this.field_2_hps = 20;
        this.field_8_cv = new Colorref();
        this.field_11_lidDefault = 0x0400;
        this.field_12_lidFE = 0x0400;
        this.field_20_hresi = new Hyphenation();
        this.field_23_shd = new ShadingDescriptor();
        this.field_24_brc = new BorderCode();
View Full Code Here

    protected Colorref field_2_cvBack;
    protected int field_3_ipat;

    protected SHDAbstractType()
    {
        this.field_1_cvFore = new Colorref();
        this.field_2_cvBack = new Colorref();
    }
View Full Code Here

        this.field_2_cvBack = new Colorref();
    }

    protected void fillFields( byte[] data, int offset )
    {
        field_1_cvFore                 = new Colorref( data, 0x0 + offset );
        field_2_cvBack                 = new Colorref( data, 0x4 + offset );
        field_3_ipat                   = LittleEndian.getShort( data, 0x8 + offset );
    }
View Full Code Here

TOP

Related Classes of org.apache.poi.hwpf.model.Colorref

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.