* @param svgXValue the <code>String</code> value of <code>SvgXAttribute</code>, see {@odf.attribute svg:x} at specification
* @param svgYValue the <code>String</code> value of <code>SvgYAttribute</code>, see {@odf.attribute svg:y} at specification
* @return the element {@odf.element presentation:placeholder}
*/
public PresentationPlaceholderElement newPresentationPlaceholderElement(String presentationObjectValue, String svgHeightValue, String svgWidthValue, String svgXValue, String svgYValue) {
PresentationPlaceholderElement presentationPlaceholder = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationPlaceholderElement.class);
presentationPlaceholder.setPresentationObjectAttribute(presentationObjectValue);
presentationPlaceholder.setSvgHeightAttribute(svgHeightValue);
presentationPlaceholder.setSvgWidthAttribute(svgWidthValue);
presentationPlaceholder.setSvgXAttribute(svgXValue);
presentationPlaceholder.setSvgYAttribute(svgYValue);
this.appendChild(presentationPlaceholder);
return presentationPlaceholder;
}