Hi,
Is there a way when exporting to excel to get the cells tooltips as cells comments in excel?
thanks
Hello Hady,
I was able to achieve this through the following code:
private void ultraGridExcelExporter1_CellExporting(object sender, Infragistics.Win.UltraWinGrid.ExcelExport.CellExportingEventArgs e)
{
WorksheetCellComment comment = new WorksheetCellComment();
FormattedString str = new FormattedString(e.Value.ToString());
comment.Text = str;
e.CurrentWorksheet.Rows[e.CurrentRowIndex].SetCellComment(e.CurrentColumnIndex, comment);
}
Please feel free to let me know if a question about our toolset comes up on your mind.
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.