result.setData("wrap", true);
}
if (cfh.hasRightBorder()){
result.setData("rbo",true);
}
TextHAlign textHAlign = (cell==null)?null:cell.getTextHAlign();
if (textHAlign != null) {
if (textHAlign.equals(TextHAlign.RIGHT)) {
result.setData("hal","r");
} else if (textHAlign.equals(TextHAlign.CENTER)) {
result.setData("hal","c");
}
}
text = Utils.escapeCellText(text,wrap,wrap);
result.setData("val", text);