0 Star 1 Fork 0

有点心急 / gotls

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
comment.go 431 Bytes
一键复制 编辑 原始数据 按行查看 历史
有点心急 提交于 2024-05-13 10:39 . 24.05.13
package excelT
import (
"github.com/xuri/excelize/v2"
)
var author = "YouDianXinJi"
func (cell *Cell) SetComment(title, comment string) {
_ = cell.File.AddComment(cell.SheetName, excelize.Comment{
Author: author,
Cell: cell.Position,
Width: 250,
Paragraph: []excelize.RichTextRun{
{Text: title, Font: &excelize.Font{Color: "FF0000", Bold: true}},
{Text: comment, Font: &excelize.Font{Bold: true}},
},
})
}
Go
1
https://gitee.com/ydxj/gotls.git
git@gitee.com:ydxj/gotls.git
ydxj
gotls
gotls
v0.0.6

搜索帮助