JRFont baseFont = getBaseFont(font);
if (baseFont != null)
{
return baseFont.isStrikeThrough();
}
JRStyle baseStyle = getBaseStyle(font);
if (baseStyle != null)
{
Boolean strikeThrough = baseStyle.isStrikeThrough();
if (strikeThrough != null)
{
return strikeThrough.booleanValue();
}
}