Package org.apache.poi.hssf.model

Examples of org.apache.poi.hssf.model.CommentShape


          EscherRecord escherTextbox = ( (TextboxShape) shapeModel ).getEscherTextbox();
          shapeToObj.put( escherTextbox, ( (TextboxShape) shapeModel ).getTextObjectRecord() );
          //          escherParent.addChildRecord(escherTextbox);

          if ( shapeModel instanceof CommentShape ){
            CommentShape comment = (CommentShape)shapeModel;
            tailRec.add(comment.getNoteRecord());
          }

        }
        escherParent.addChildRecord( shapeModel.getSpContainer() );
      }
View Full Code Here


                    EscherRecord escherTextbox = ( (TextboxShape) shapeModel ).getEscherTextbox();
                    shapeToObj.put( escherTextbox, ( (TextboxShape) shapeModel ).getTextObjectRecord() );
                    //                    escherParent.addChildRecord(escherTextbox);
                   
                    if ( shapeModel instanceof CommentShape ){
                        CommentShape comment = (CommentShape)shapeModel;
                        tailRec.add(comment.getNoteRecord());
                    }

                }
                escherParent.addChildRecord( shapeModel.getSpContainer() );
            }
View Full Code Here

TOP

Related Classes of org.apache.poi.hssf.model.CommentShape

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.