.net - Is there a way to add tooltip to excel cell data in c# -


i generating excel sheet multiple databases , wanted @ particular column add "tooltip" show, data being fetched. want property or method set tooltip of excel cell. @ moment tried :

objcopy.cells[j + convert.toint16(startrow["startrow"]), 4].tooltip = "from first table"; 

and

objcopy.cells[j + convert.toint16(startrow["startrow"]), 4].setattribute("title","from spreadsheet"); 

no. excel doesn't have tooltips. thing comes close comments.

the range.addcomment need that.


Comments