* decoration.
* @return <code>true</code> if there is a strikethrough text decoration
* configured, <code>false</code> otherwise.
*/
protected boolean renderStrikethrough(IStyle cellStyle) {
TextDecorationEnum decoration = cellStyle.getAttributeValue(CellStyleAttributes.TEXT_DECORATION);
if (decoration != null) {
return (decoration.equals(TextDecorationEnum.STRIKETHROUGH)
|| decoration.equals(TextDecorationEnum.UNDERLINE_STRIKETHROUGH));
}
return this.strikethrough;
}