添加批注

  1. func (f *File) AddComment(sheet string, comment Comment) error

根据给定的工作表名称、单元格坐标和样式参数(作者与文本信息)添加批注。作者信息最大长度为 255 个字符,最大文本内容长度为 32512 个字符,超出该范围的字符将会被忽略。例如,为 Sheet1!$A$3 单元格添加批注:

在 Excel 文档中添加批注

  1. err := f.AddComment("Sheet1", excelize.Comment{
  2. Cell: "A3",
  3. Author: "Excelize",
  4. Paragraph: []excelize.RichTextRun{
  5. {Text: "Excelize: ", Font: &excelize.Font{Bold: true}},
  6. {Text: "This is a comment."},
  7. },
  8. })