* @param svgY1Value the <code>String</code> value of <code>SvgY1Attribute</code>, see {@odf.attribute svg:y1} at specification
* @param svgY2Value the <code>String</code> value of <code>SvgY2Attribute</code>, see {@odf.attribute svg:y2} at specification
* @return the element {@odf.element draw:measure}
*/
public DrawMeasureElement newDrawMeasureElement(String svgX1Value, String svgX2Value, String svgY1Value, String svgY2Value) {
DrawMeasureElement drawMeasure = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawMeasureElement.class);
drawMeasure.setSvgX1Attribute(svgX1Value);
drawMeasure.setSvgX2Attribute(svgX2Value);
drawMeasure.setSvgY1Attribute(svgY1Value);
drawMeasure.setSvgY2Attribute(svgY2Value);
this.appendChild(drawMeasure);
return drawMeasure;
}