Python中调整行高和列宽
Contents
[
Hide
]
Excel电子表格Python——调整行高列宽
设置行高
对于Aspose.Cells,可以通过调用Cells集合的setRowHeight方法来设置Python中单行的高度。 setRowHeight 方法采用以下参数:
- 行索引,您要更改其高度的行的索引。
- 行高应用于行的行高。
Python 代码
def set_row_height(self):
\# Instantiating a Workbook object by excel file path
workbook = self.Workbook(self.self.dataDir + 'Book1.xls')
\# Accessing the first worksheet in the Excel file
worksheet = workbook.getWorksheets().get(0)
cells = worksheet.getCells()
\# Setting the height of the second row to 13
cells.setRowHeight(1, 13)
\# Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(self.dataDir + "Set Row Height.xls")
print "Set Row Height Successfully."
设置列宽
通过调用 Cells 集合的 setColumnWidth 方法设置列的宽度。 setColumnWidth 方法采用以下参数:
- 列索引,您要更改其宽度的列的索引。
- 列宽所需的列宽。
Python 代码
def set_column_width(self):
\# Instantiating a Workbook object by excel file path
workbook = self.Workbook(self.dataDir + 'Book1.xls')
\# Accessing the first worksheet in the Excel file
worksheet = workbook.getWorksheets().get(0)
cells = worksheet.getCells()
\# Setting the width of the second column to 17.5
cells.setColumnWidth(1, 17.5)
\# Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(self.dataDir + "Set Column Width.xls")
print "Set Column Width Successfully."
下载运行代码
下载**调整行高和列宽 (Aspose.Cells)**来自以下任何社交编码网站: