Hello,
I have noticed that creating a font the way:
I have noticed that creating a font the way:
font = workbook.CreateFont( );
font.Underline = FontUnderlineType.None;
style = workbook.CreateCellStyle( );
style.SetFont( font );
the cell text formatted with the style is underlined. If I omit the line:font.Underline = FontUnderlineType.None;
the text is not underlined. Is there any bug with "Underline" property processing?