*
* @param svgViewBoxValue the <code>String</code> value of <code>SvgViewBoxAttribute</code>, see {@odf.attribute svg:viewBox} at specification
* @return the element {@odf.element draw:connector}
*/
public DrawConnectorElement newDrawConnectorElement(String svgViewBoxValue) {
DrawConnectorElement drawConnector = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawConnectorElement.class);
drawConnector.setSvgViewBoxAttribute(svgViewBoxValue);
this.appendChild(drawConnector);
return drawConnector;
}