* @author Sebastian R�sgen
* @author Markus Kr�ger
*/
private void construct(ITextTableCell cell) throws TextException{
//cellStyle = (String)xPropertySet.getPropertyValue("CellStyle").toString(); // not existent
ITextTableCellProperties properties = cell.getProperties();
this.properties = properties;
numberFormat = new Integer(properties.getNumberFormat());
backColor = new Integer(properties.getBackColor());
verticalAlignment = new Short(properties.getVertOrient());
}