Package org.apache.poi.hssf.record

Examples of org.apache.poi.hssf.record.SharedFormulaRecord


     * as part of the value records
     */
    public void testSharedFormula() {
        List records = new ArrayList();
        records.add( new FormulaRecord() );
        records.add( new SharedFormulaRecord() );
        records.add(new WindowTwoRecord());

        constructValueRecord(records);
        Iterator iterator = valueRecord.getIterator();
        RecordBase record = (RecordBase) iterator.next();
View Full Code Here

TOP

Related Classes of org.apache.poi.hssf.record.SharedFormulaRecord

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.