xlwt 的 Worksheet.hide_comments 函数说明文档
简介
Worksheet.hide_comments()
函数用于隐藏工作表中所有的批注,该函数在 xlwt 版本 1.2.0 或更高版本可用。
语法
Worksheet.hide_comments()
函数不需要任何参数。
返回值
该函数没有任何返回值。
示例
示例1:
import xlwt
# 创建一个workbook,然后添加一个sheet
workbook = xlwt.Workbook()
sheet = workbook.add_sheet('Sheet1')
# 写入数据
for i in range(10):
for j in range(10):
sheet.write(i, j, 'python')
# 添加批注
sheet.write_comment(0, 0, 'This is a comment')
sheet.write_comment(2, 2, 'This is a comment')
# 隐藏批注
sheet.hide_comments()
# 保存workbook
workbook.save('example.xls')
示例2:
import xlwt
# 创建一个workbook,然后添加一个sheet
workbook = xlwt.Workbook()
sheet = workbook.add_sheet('Sheet1')
# 写入数据
for i in range(5):
for j in range(5):
sheet.write(i, j, 'Python')
# 添加批注
sheet.write_comment(1, 1, 'This is a comment1')
sheet.write_comment(3, 3, 'This is a comment2')
# 隐藏批注
sheet.hide_comments()
# 恢复显示批注
sheet.show_comments()
# 保存workbook
workbook.save('example.xls')
注意事项
- 该函数只能处理来自 xlwt 的批注,无法处理直接在 excel 文件中添加的批注;
- 隐藏并不会删除批注,你可以通过
Worksheet.show_comments()
函数再次显示已隐藏的批注; - 支持的 xlwt 版本为 1.2.0 或更高版本。
以上就是关于 Worksheet.hide_comments()
函数的详细说明。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:详解xlwt的 Worksheet.hide_comments 函数:隐藏所有注释 - Python技术站