* The returned value can be "auto", "automatic", "baseline", "bottom", "middle", or "top".
*
* @return the vertical alignment setting of this cell.
*/
public String getVerticalAlignment() {
OdfStyleBase styleElement = getCellStyleElement();
if (styleElement != null) {
OdfStyleProperty property = OdfStyleProperty.get(OdfStylePropertiesSet.TableCellProperties,
OdfName.newName(OdfDocumentNamespace.STYLE, "vertical-align"));
return styleElement.getProperty(property);
}
return null;
}