* Set whether or not this column is truncatable in the footer.
*
* @param truncatable true to make truncatable, false to make non truncatable
*/
public void setFooterTruncatable(boolean truncatable) {
TruncationProperty prop = properties.getColumnProperty(
TruncationProperty.TYPE, false);
if (prop == null) {
prop = new TruncationProperty();
setColumnProperty(TruncationProperty.TYPE, prop);
}
prop.setFooterTruncatable(truncatable);
}