* @param svgDValue the <code>String</code> value of <code>SvgDAttribute</code>, see {@odf.attribute svg:d} at specification
* @param svgViewBoxValue the <code>Integer</code> value of <code>SvgViewBoxAttribute</code>, see {@odf.attribute svg:viewBox} at specification
* @return the element {@odf.element draw:path}
*/
public DrawPathElement newDrawPathElement(String svgDValue, int svgViewBoxValue) {
DrawPathElement drawPath = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawPathElement.class);
drawPath.setSvgDAttribute(svgDValue);
drawPath.setSvgViewBoxAttribute(svgViewBoxValue);
this.appendChild(drawPath);
return drawPath;
}