应用表格样式
表格样式定义了一组可以轻松应用于表格的格式设置。可以在表格样式中设置边框、底纹、对齐方式和字体等格式,并将其应用于多个表格以获得一致的外观。
Aspose.Words 支持将表格样式应用于表格,还支持读取任何表格样式的属性。在加载和保存期间通过以下方式保留表格样式:
- 加载和保存为 DOCX 和 WordML 格式的表格样式时会保留这些格式
- 以 DOC 格式加载和保存时保留表格样式(但不保留任何其他格式)
- 导出为其他格式、渲染或打印时,表格样式将扩展为表格中的直接格式,因此保留所有格式
创建表格样式
用户可以创建新样式并将其添加到样式集合中。 Add方法用于创建新的表格样式。
以下代码示例显示如何创建新的用户定义的表格样式:
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET.git. | |
doc = aw.Document() | |
builder = aw.DocumentBuilder(doc) | |
table = builder.start_table() | |
builder.insert_cell() | |
builder.write("Name") | |
builder.insert_cell() | |
builder.write("Value") | |
builder.end_row() | |
builder.insert_cell() | |
builder.insert_cell() | |
builder.end_table() | |
table_style = doc.styles.add(aw.StyleType.TABLE, "MyTableStyle1").as_table_style() | |
table_style.borders.line_style = aw.LineStyle.DOUBLE | |
table_style.borders.line_width = 1 | |
table_style.left_padding = 18 | |
table_style.right_padding = 18 | |
table_style.top_padding = 12 | |
table_style.bottom_padding = 12 | |
table.style = table_style | |
doc.save(ARTIFACTS_DIR + "WorkingWithTableStylesAndFormatting.create_table_style.docx") |
复制现有表格样式
如果需要,您可以使用 AddCopy
方法将某个文档中已存在的表格样式复制到样式集合中。
重要的是要知道,通过这种复制,链接的样式也会被复制。
以下代码示例演示如何将样式从一个文档导入到另一个文档:
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET.git. | |
src_doc = aw.Document() | |
# Create a custom style for the source document. | |
src_style = src_doc.styles.add(aw.StyleType.PARAGRAPH, "MyStyle") | |
src_style.font.color = drawing.Color.red | |
# Import the source document's custom style into the destination document. | |
dst_doc = aw.Document() | |
new_style = dst_doc.styles.add_copy(src_style) | |
# The imported style has an appearance identical to its source style. | |
self.assertEqual("MyStyle", new_style.name) | |
self.assertEqual(drawing.Color.red.to_argb(), new_style.font.color.to_argb()) |
应用现有表格样式
Aspose.Words提供了一个继承自Style的TableStyle类。 TableStyle 方便用户应用不同的样式选项,如阴影、填充、缩进、CellSpacing 和 Font 等。
此外,Aspose.Words 提供了 StyleCollection 类和 Table
类的一些属性来指定我们将使用哪种表格样式:Style、StyleIdentifier、StyleName 和 StyleOptions。
Aspose.Words 还提供 ConditionalStyle 类(表示应用于具有指定表格样式的表格某些区域的特殊格式)以及表示 ConditionalStyle 对象集合的 ConditionalStyleCollection。该集合包含一组永久项目,代表 ConditionalStyleType 枚举类型的每个值的一个项目。 ConditionalStyleType 枚举定义了可以在表格样式中定义条件格式的所有可能的表格区域。
在这种情况下,可以为 ConditionalStyleType 枚举类型下定义的所有可能的表格区域定义条件格式。
以下代码示例显示如何定义表标题行的条件格式:
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET.git. | |
doc = aw.Document() | |
builder = aw.DocumentBuilder(doc) | |
table = builder.start_table() | |
builder.insert_cell() | |
builder.write("Name") | |
builder.insert_cell() | |
builder.write("Value") | |
builder.end_row() | |
builder.insert_cell() | |
builder.insert_cell() | |
builder.end_table() | |
table_style = doc.styles.add(aw.StyleType.TABLE, "MyTableStyle1").as_table_style() | |
table_style.conditional_styles.first_row.shading.background_pattern_color = drawing.Color.green_yellow | |
table_style.conditional_styles.first_row.shading.texture = aw.TextureIndex.TEXTURE_NONE | |
table.style = table_style | |
doc.save(ARTIFACTS_DIR + "WorkingWithTableStylesAndFormatting.define_conditional_formatting.docx") |
您还可以选择要应用样式的表格部分,例如第一列、最后一列、带状行。它们列在 TableStyleOptions 枚举中并通过 StyleOptions 属性应用。 TableStyleOptions 枚举允许按位组合这些功能。
以下代码示例演示如何创建应用了表格样式的新表:
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET.git. | |
doc = aw.Document() | |
builder = aw.DocumentBuilder(doc) | |
table = builder.start_table() | |
# We must insert at least one row first before setting any table formatting. | |
builder.insert_cell() | |
# Set the table style used based on the unique style identifier. | |
table.style_identifier = aw.StyleIdentifier.MEDIUM_SHADING1_ACCENT1 | |
# Apply which features should be formatted by the style. | |
table.style_options = aw.tables.TableStyleOptions.FIRST_COLUMN | aw.tables.TableStyleOptions.ROW_BANDS | aw.tables.TableStyleOptions.FIRST_ROW | |
table.auto_fit(aw.tables.AutoFitBehavior.AUTO_FIT_TO_CONTENTS) | |
builder.writeln("Item") | |
builder.cell_format.right_padding = 40 | |
builder.insert_cell() | |
builder.writeln("Quantity (kg)") | |
builder.end_row() | |
builder.insert_cell() | |
builder.writeln("Apples") | |
builder.insert_cell() | |
builder.writeln("20") | |
builder.end_row() | |
builder.insert_cell() | |
builder.writeln("Bananas") | |
builder.insert_cell() | |
builder.writeln("40") | |
builder.end_row() | |
builder.insert_cell() | |
builder.writeln("Carrots") | |
builder.insert_cell() | |
builder.writeln("50") | |
builder.end_row() | |
doc.save(ARTIFACTS_DIR + "WorkingWithTableStylesAndFormatting.build_table_with_style.docx") |
下图显示了 Table Styles 在 Microsoft Word 中的表示及其在 Aspose.Words 中的相应属性。
使用表格样式
表格样式定义了一组可以轻松应用于表格的格式设置。边框、底纹、对齐方式和字体等格式可以在表格样式中设置,并应用于多个表格以获得一致的外观。
Aspose.Words 支持将表格样式应用于表格,还支持读取任何表格样式的属性。在加载和保存期间通过以下方式保留表格样式:
- 加载和保存为 DOCX 和 WordML 格式的表格样式时,会保留这些格式。
- 以 DOC 格式加载和保存时会保留表格样式(但不会保存为任何其他格式)。
- 导出为其他格式、渲染或打印时,表格样式将扩展为直接在表格上设置格式,以便保留所有格式。
目前,您无法创建新的表格样式。您只能将文档中已存在的内置表格样式或自定义表格样式应用到表格。
从表格样式中获取格式并将其应用为直接格式
Aspose.Words 还提供 ExpandTableStylesToDirectFormatting 方法来获取表格样式上的格式并将其扩展为表格的行和单元格作为直接格式。尝试将格式与表格样式和单元格样式结合起来。
以下代码示例演示如何将格式从样式扩展到表行和单元格作为直接格式:
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET.git. | |
doc = aw.Document(MY_DIR + "Tables.docx") | |
# Get the first cell of the first table in the document. | |
table = doc.get_child(aw.NodeType.TABLE, 0, True).as_table() | |
first_cell = table.first_row.first_cell | |
# First print the color of the cell shading. | |
# This should be empty as the current shading is stored in the table style. | |
cell_shading_before = first_cell.cell_format.shading.background_pattern_color | |
print("Cell shading before style expansion:", cell_shading_before) | |
doc.expand_table_styles_to_direct_formatting() | |
# Now print the cell shading after expanding table styles. | |
# A blue background pattern color should have been applied from the table style. | |
cell_shading_after = first_cell.cell_format.shading.background_pattern_color | |
print("Cell shading after style expansion:", cell_shading_after) |