/**
* Returns the table-layout property.
* @return The table-layout property.
*/
public FoValue getTableLayout() {
final PdTableLayout property = (PdTableLayout) getProperty(
FoProperty.TABLE_LAYOUT);
if (property == null) {
return PdTableLayout.getValueNoInstance();
}
return property.getValue();
}