Row类

Row类

代表工作表中的一行。

Row 类型公开以下成员:

特性

属性描述
is_blank指示该行是否包含任何数据
is_collapsed该行是否折叠
height获取和设置行高(以 Point 为单位)。
is_hidden指示该行是否隐藏。
index获取该行的索引。
group_level获取行的组级别。
is_height_matched指示行高是否与工作簿当前的默认字体设置匹配。
此属性为 True 还表示行高是“自动”的,无需用户设置自定义高度值。
has_custom_style指示该行是否具有自定义样式设置(与从工作簿继承的默认样式设置不同)。
first_cell获取行中的第一个单元格对象。
first_data_cell获取行中的第一个非空白单元格。
last_cell获取行中的最后一个单元格对象。
last_data_cell获取行中最后一个非空白单元格。

获取单元格。

索引器

名称描述
[index]列索引

方法

方法描述
get_cell_by_index获取该行单元格集合中特定索引的单元格。
get_enumerator获取一个枚举器,该枚举器遍历该行的单元格。
get_cell_or_null获取特定索引中的单元格或 null。
get_style获取该行的样式。
set_style设置该行的样式。
copy_settings复制行的设置,例如样式、高度、可见性等。
apply_style对整行应用格式。
equals检查此对象是否与另一个行对象引用同一行。

例子

from aspose.cells import BackgroundType, StyleFlag, Workbook
from aspose.pydrawing import Color

# Instantiating a Workbook object
workbook = Workbook()
# Obtaining the reference of the first worksheet
worksheet = workbook.worksheets[0]
style = workbook.create_style()
# Setting the background color to Blue
style.background_color = Color.blue
# Setting the foreground color to Red
style.foreground_color = Color.red
# setting Background Pattern
style.pattern = BackgroundType.DIAGONAL_STRIPE
# New Style Flag
styleFlag = StyleFlag()
# Set All Styles
styleFlag.all = True
# Get first row
row = worksheet.cells.rows[0]
# Apply Style to first row
row.apply_style(style, styleFlag)
# Saving the Excel file
workbook.save("book1.xls")

也可以看看