* Receives the value of the ODFDOM attribute representation <code>StyleDistanceAfterSepAttribute</code> , See {@odf.attribute style:distance-after-sep}
*
* @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public String getStyleDistanceAfterSepAttribute() {
StyleDistanceAfterSepAttribute attr = (StyleDistanceAfterSepAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "distance-after-sep");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return null;
}