* @return an instance of <code>PageLayoutProperties</p>;Null if there is no
* "style:page-layout-properties" defined
*/
public static PageLayoutProperties getPageLayoutProperties(
OdfStyleBase style) {
OdfStylePropertiesBase properties = style
.getPropertiesElement(OdfStylePropertiesSet.PageLayoutProperties);
if (properties != null)
return new PageLayoutProperties(
(StylePageLayoutPropertiesElement) properties);
else