super( parent, anchor );
Count of all children and their childrens children. int count = shapes.size(); for ( Iterator iterator = shapes.iterator(); iterator.hasNext(); ) { HSSFShape shape = (HSSFShape) iterator.next(); count += shape.countOfAllChildren(); } return count;
int count = shapes.size(); for ( Iterator iterator = shapes.iterator(); iterator.hasNext(); ) { HSSFShape shape = (HSSFShape) iterator.next(); count += shape.countOfAllChildren(); } return count;
Create another group under this group.paramanchor the position of the new group.returnthe group HSSFShapeGroup group = new HSSFShapeGroup(this, anchor); group.anchor = anchor; shapes.add(group); return group;
HSSFShapeGroup group = new HSSFShapeGroup(this, anchor); group.anchor = anchor; shapes.add(group); return group;
Creates a picture.paramanchor the client anchor describes how this group is attached to the sheet.returnthe newly created shape.authorzunker HSSFPicture shape = new HSSFPicture(this, anchor); shape.anchor = anchor; shape.setPictureIndex( pictureIndex ); shapes.add(shape); return shape;
HSSFPicture shape = new HSSFPicture(this, anchor); shape.anchor = anchor; shape.setPictureIndex( pictureIndex ); shapes.add(shape); return shape;
Creates a polygonparamanchor the client anchor describes how this group is attached to the sheet.returnthe newly created shape. HSSFPolygon shape = new HSSFPolygon(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
HSSFPolygon shape = new HSSFPolygon(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
Create a new simple shape under this group.paramanchor the position of the shape.returnthe shape HSSFSimpleShape shape = new HSSFSimpleShape(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
HSSFSimpleShape shape = new HSSFSimpleShape(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
Create a new textbox under this group.paramanchor the position of the shape.returnthe textbox HSSFTextbox shape = new HSSFTextbox(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
HSSFTextbox shape = new HSSFTextbox(this, anchor); shape.anchor = anchor; shapes.add(shape); return shape;
Return all children contained by this shape. return shapes;
return shapes;
The top left x coordinate of this group. return x1;
return x1;
The bottom right x coordinate of this group. return x2;
return x2;
The top left y coordinate of this group. return y1;
return y1;
The bottom right y coordinate of this group. return y2;
return y2;
Sets the coordinate space of this group. All children are contrained to these coordinates. this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2;
this.x1 = x1; this.y1 = y1; this.x2 = x2; this.y2 = y2;