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