* Receives the value of the ODFDOM attribute representation <code>SvgX1Attribute</code> , See {@odf.attribute svg:x1}
*
* @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public String getSvgX1Attribute() {
SvgX1Attribute attr = (SvgX1Attribute) getOdfAttribute(OdfDocumentNamespace.SVG, "x1");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return SvgX1Attribute.DEFAULT_VALUE;
}