单元格

RichTextRun 定义了富文本的属性。

  1. type RichTextRun struct {
  2. Font *Font
  3. Text string
  4. }

HyperlinkOpts 用来指定可选的超链接属性,例如要显示的文字与屏幕提示文字。

  1. type HyperlinkOpts struct {
  2. Display *string
  3. Tooltip *string
  4. }

FormulaOpts 用于在 SetCellFormula 函数中指定设置特殊公式类型。

  1. type FormulaOpts struct {
  2. Type *string // 公式类型
  3. Ref *string // 共享公式引用
  4. }