C# 添加Excel 批注、如何在Excel的单元格里面增加批注

 

           Microsoft.Office.Interop.Excel.Range oCell = range[rowIndex, columnIndex] as Microsoft.Office.Interop.Excel.Range;

           //如何在Excel的单元格里面增加批注

           if (oCell.Comment != null)
           {
               oCell.Comment.Delete();
           }
           oCell.AddComment(comment);

posted @   汉城  阅读(1779)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示