*
* @param styleNumFormatValue the <code>String</code> value of <code>StyleNumFormatAttribute</code>, see {@odf.attribute style:num-format} at specification
* @return the element {@odf.element text:linenumbering-configuration}
*/
public TextLinenumberingConfigurationElement newTextLinenumberingConfigurationElement(String styleNumFormatValue) {
TextLinenumberingConfigurationElement textLinenumberingConfiguration = ((OdfFileDom) this.ownerDocument).newOdfElement(TextLinenumberingConfigurationElement.class);
textLinenumberingConfiguration.setStyleNumFormatAttribute(styleNumFormatValue);
this.appendChild(textLinenumberingConfiguration);
return textLinenumberingConfiguration;
}