设置工作表格式属性
func (f *File) SetSheetFormatPr(sheet string, opts ...SheetFormatPrOptions) error
根据给定的工作表名称设置格式属性。
可选格式参数 | 数据类型 |
---|---|
BaseColWidth | uint8 |
DefaultColWidth | float64 |
DefaultRowHeight | float64 |
CustomHeight | bool |
ZeroHeight | bool |
ThickTop | bool |
ThickBottom | bool |
例如,设置名为 Sheet1
的工作表中行默认为隐藏:
f := excelize.NewFile()
const sheet = "Sheet1"
if err := f.SetSheetFormatPr("Sheet1", excelize.ZeroHeight(true)); err != nil {
fmt.Println(err)
}
if err := f.SetRowVisible("Sheet1", 10, true); err != nil {
fmt.Println(err)
}
f.SaveAs("Book1.xlsx")