Package org.apache.poi.hslf.usermodel
Interface HSLFShapeContainer
-
- All Superinterfaces:
java.lang.Iterable<HSLFShape>,ShapeContainer<HSLFShape,HSLFTextParagraph>
- All Known Implementing Classes:
HSLFGroupShape,HSLFMasterSheet,HSLFNotes,HSLFSheet,HSLFSlide,HSLFSlideMaster,HSLFTable,HSLFTitleMaster
public interface HSLFShapeContainer extends ShapeContainer<HSLFShape,HSLFTextParagraph>
Common interface for shape containers, e.g. sheets or groups of shapes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HSLFAutoShapecreateAutoShape()create a new shape with a predefined geometry and add it to this shape containerHSLFConnectorShapecreateConnector()create a connectorHSLFFreeformShapecreateFreeform()create a new shape with a custom geometryHSLFGroupShapecreateGroup()create a group of shapes belonging to this containerHSLFObjectShapecreateOleShape(PictureData pictureData)Create a new OLE object shape with the given pictureData as preview imageHSLFPictureShapecreatePicture(PictureData pictureData)create a picture belonging to this containerHSLFTextBoxcreateTextBox()create a text box-
Methods inherited from interface org.apache.poi.sl.usermodel.ShapeContainer
addShape, createTable, getShapes, removeShape
-
-
-
-
Method Detail
-
createAutoShape
HSLFAutoShape createAutoShape()
Description copied from interface:ShapeContainercreate a new shape with a predefined geometry and add it to this shape container- Specified by:
createAutoShapein interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createFreeform
HSLFFreeformShape createFreeform()
Description copied from interface:ShapeContainercreate a new shape with a custom geometry- Specified by:
createFreeformin interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createTextBox
HSLFTextBox createTextBox()
Description copied from interface:ShapeContainercreate a text box- Specified by:
createTextBoxin interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createConnector
HSLFConnectorShape createConnector()
Description copied from interface:ShapeContainercreate a connector- Specified by:
createConnectorin interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createGroup
HSLFGroupShape createGroup()
Description copied from interface:ShapeContainercreate a group of shapes belonging to this container- Specified by:
createGroupin interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createPicture
HSLFPictureShape createPicture(PictureData pictureData)
Description copied from interface:ShapeContainercreate a picture belonging to this container- Specified by:
createPicturein interfaceShapeContainer<HSLFShape,HSLFTextParagraph>
-
createOleShape
HSLFObjectShape createOleShape(PictureData pictureData)
Description copied from interface:ShapeContainerCreate a new OLE object shape with the given pictureData as preview image- Specified by:
createOleShapein interfaceShapeContainer<HSLFShape,HSLFTextParagraph>- Parameters:
pictureData- the preview image
-
-