/**
* @return the max cell dimensions
*/
public Dimension getMaxCWDimension() {
ICSSFigure figure = getFigure();
LayoutManager layout = figure.getLayoutManager();
if (layout instanceof CSSTableCellLayout) {
Dimension d = ((CSSTableCellLayout) layout).getMaxContentWidthSize(
figure, _cellWidth, _cellHeight);
return d;
}