• Go-Excelize API源码阅读(十四)——GetSheetFormatPr


    Go-Excelize API源码阅读(十四)——GetSheetFormatPr

    开源摘星计划(WeOpen Star) 是由腾源会 2022 年推出的全新项目,旨在为开源人提供成长激励,为开源项目提供成长支持,助力开发者更好地了解开源,更快地跨越鸿沟,参与到开源的具体贡献与实践中。

    不管你是开源萌新,还是希望更深度参与开源贡献的老兵,跟随“开源摘星计划”开启你的开源之旅,从一篇学习笔记、到一段代码的提交,不断挖掘自己的潜能,最终成长为开源社区的“闪亮之星”。

    我们将同你一起,探索更多的可能性!

    项目地址: WeOpen-Star:https://github.com/weopenprojects/WeOpen-Star

    一、Go-Excelize简介

    Excelize 是 Go 语言编写的用于操作 Office Excel 文档基础库,基于 ECMA-376,ISO/IEC 29500 国际标准。可以使用它来读取、写入由 Microsoft Excel™ 2007 及以上版本创建的电子表格文档。支持 XLAM / XLSM / XLSX / XLTM / XLTX 等多种文档格式,高度兼容带有样式、图片(表)、透视表、切片器等复杂组件的文档,并提供流式读写 API,用于处理包含大规模数据的工作簿。可应用于各类报表平台、云计算、边缘计算等系统。使用本类库要求使用的 Go 语言为 1.15 或更高版本。

    二、 GetSheetFormatPr

    func (f *File) GetSheetFormatPr(sheet string, opts ...SheetFormatPrOptionsPtr) error
    
    • 1

    根据给定的工作表名称获取格式属性。

    可选格式参数数据类型
    BaseColWidthuint8
    DefaultColWidthfloat64
    DefaultRowHeightfloat64
    CustomHeightbool
    ZeroHeightbool
    ThickTopbool
    ThickBottombool

    使用示例:

    f := excelize.NewFile()
    const sheet = "Sheet1"
    
    var (
        baseColWidth     excelize.BaseColWidth
        defaultColWidth  excelize.DefaultColWidth
        defaultRowHeight excelize.DefaultRowHeight
        customHeight     excelize.CustomHeight
        zeroHeight       excelize.ZeroHeight
        thickTop         excelize.ThickTop
        thickBottom      excelize.ThickBottom
    )
    
    if err := f.GetSheetFormatPr(sheet,
        &baseColWidth,
        &defaultColWidth,
        &defaultRowHeight,
        &customHeight,
        &zeroHeight,
        &thickTop,
        &thickBottom,
    ); err != nil {
        fmt.Println(err)
    }
    fmt.Println("Defaults:")
    fmt.Println("- baseColWidth:", baseColWidth)
    fmt.Println("- defaultColWidth:", defaultColWidth)
    fmt.Println("- defaultRowHeight:", defaultRowHeight)
    fmt.Println("- customHeight:", customHeight)
    fmt.Println("- zeroHeight:", zeroHeight)
    fmt.Println("- thickTop:", thickTop)
    fmt.Println("- thickBottom:", thickBottom)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32

    输出结果:

    Defaults:
    - baseColWidth: 0
    - defaultColWidth: 0
    - defaultRowHeight: 15
    - customHeight: false
    - zeroHeight: false
    - thickTop: false
    - thickBottom: false
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    废话少说,上代码:

    func (f *File) GetSheetFormatPr(sheet string, opts ...SheetFormatPrOptionsPtr) error {
    	s, err := f.workSheetReader(sheet)
    	if err != nil {
    		return err
    	}
    	fp := s.SheetFormatPr
    	for _, opt := range opts {
    		opt.getSheetFormatPr(fp)
    	}
    	return err
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    代码很简单,先读取工作表,然后获取工作表的格式属性,然后遍历不定长参数opts,对fp的每个opt进行读取。

    SheetFormatPrOptionsPtr是一个interface。

    type SheetFormatPrOptionsPtr interface {
    	SheetFormatPrOptions
    	getSheetFormatPr(formatPr *xlsxSheetFormatPr)
    }
    
    • 1
    • 2
    • 3
    • 4

    该interface 内有两个函数。
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    在这里插入图片描述
    在这里插入图片描述
    我们可以发现,他们都大同小异,第一步的if语句是判断格式属性是否存在,如果不存在就赋一个默认值。
    然后取格式属性指针fp的格式属性,前面是类型转换:
    在这里插入图片描述

    type xlsxSheetFormatPr struct {
    	XMLName          xml.Name `xml:"sheetFormatPr"`
    	BaseColWidth     uint8    `xml:"baseColWidth,attr,omitempty"`
    	DefaultColWidth  float64  `xml:"defaultColWidth,attr,omitempty"`
    	DefaultRowHeight float64  `xml:"defaultRowHeight,attr"`
    	CustomHeight     bool     `xml:"customHeight,attr,omitempty"`
    	ZeroHeight       bool     `xml:"zeroHeight,attr,omitempty"`
    	ThickTop         bool     `xml:"thickTop,attr,omitempty"`
    	ThickBottom      bool     `xml:"thickBottom,attr,omitempty"`
    	OutlineLevelRow  uint8    `xml:"outlineLevelRow,attr,omitempty"`
    	OutlineLevelCol  uint8    `xml:"outlineLevelCol,attr,omitempty"`
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    下面介绍一下各个参数的作用:
    BaseColWidth:指定普通样式字体的最大数字宽度的字符数。此值不包括边距填充或网格线的额外填充。它只是字符数。
    DefaultColWidth 指定默认列宽,其度量值为普通样式字体的最大数字宽度的字符数。
    DefaultRowHeight 指定以磅值度量的默认行高,我们不必在所有行上写入高度。如果大多数行具有自定义高度,则可以将其写出,以实现优化。
    CustomHeight 指定自定义高度。
    ZeroHeight 指定是否隐藏行。
    ThickTop 指定默认情况下行是否具有粗上边框。
    ThickBottom 指定默认情况下行是否具有粗下边框。

    三、结语

    这里是老岳,这是Go语言相关源码的解读第十四篇,我会不断努力,给大家带来更多类似的文章,恳请大家不吝赐教。

  • 相关阅读:
    Android中的图像矩阵归一化
    pdf怎么压缩?pdf文件缩小的方法在这里
    反斜杠,让您的csv文档字符不撞车;让“借”您csv数据的人叫苦不迭。
    一台服务器最大能支持多少条TCP连接
    [春秋云境] CVE-2022-32991
    【SpringBoot项目】SpringBoot+MyBatis+MySQL电脑商城
    京东购物车如何提升30%性能
    洛谷P3758 可乐
    如何让Redis和mysql数据保持数据一致?
    .NET周刊【7月第1期 2024-07-07】
  • 原文地址:https://blog.csdn.net/qq_36045898/article/details/126315817