Catalogen

HSSFSimpleShape @Cluster 2 (foreground, hssfsimpleshape, shape)


AbstractShape.java

sets the shape id .

76. HSSFSimpleShape simpleShape = (HSSFSimpleShape) hssfShape;
77. switch ( simpleShape.getShapeType() )

HSSFPatriarch.java

creates a new . @ param anchor the client anchor describes how this group is attached to the sheet .

97. HSSFSimpleShape shape = new HSSFSimpleShape(null, anchor);
98. shape.anchor = anchor;

HSSFShapeGroup.java

creates a new . @ param anchor the client anchor describes how this group is attached to the sheet .

88. HSSFSimpleShape shape = new HSSFSimpleShape(this, anchor);
89. shape.anchor = anchor;

EscherGraphics.java

@ param anchor the new drawing group , if there is one , else returns null

235. HSSFSimpleShape shape = escherGroup.createShape(new HSSFChildAnchor(x1, y1, x2, y2) );
236. shape.setShapeType(HSSFSimpleShape.OBJECT_TYPE_LINE);
237. shape.setLineWidth(width);
238. shape.setLineStyleColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());

EscherGraphics.java

@ param anchor the new drawing group , if there is one , e . g . / the shape / to

243. HSSFSimpleShape shape = escherGroup.createShape(new HSSFChildAnchor(x,y,x+width,y+height) );
244. shape.setShapeType(HSSFSimpleShape.OBJECT_TYPE_OVAL);
245. shape.setLineWidth(0);
246. shape.setLineStyleColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());
247. shape.setNoFill(true);

EscherGraphics.java

sets the a 4 - byte is that specifies the color to the specified object . if the color is not available , then the value should be used on to set the font to use .

369. HSSFSimpleShape shape = escherGroup.createShape(new HSSFChildAnchor( x, y, x + width, y + height ) );
370. shape.setShapeType(HSSFSimpleShape.OBJECT_TYPE_OVAL);
371. shape.setLineStyle(HSSFShape.LINESTYLE_NONE);
372. shape.setFillColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());
373. shape.setLineStyleColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());

EscherGraphics.java

sets the a 4 - byte is that specifies the color to the specified object . if the color is not available , then the value should be used on to set the font to use .

433. HSSFSimpleShape shape = escherGroup.createShape(new HSSFChildAnchor( x, y, x + width, y + height ) );
434. shape.setShapeType(HSSFSimpleShape.OBJECT_TYPE_RECTANGLE);
435. shape.setLineStyle(HSSFShape.LINESTYLE_NONE);
436. shape.setFillColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());
437. shape.setLineStyleColor(foreground.getRed(), foreground.getGreen(), foreground.getBlue());