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);

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2021-11-29
  • 2022-01-01
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2021-07-04
  • 2022-12-23
  • 2021-07-28
  • 2021-07-27
  • 2022-12-23
  • 2021-11-29
相关资源
相似解决方案