clear_formatting method

clear_formatting()

Clears formatting of this conditional style.

def clear_formatting(self):
    ...

Examples

Shows how to reset conditional table styles.

doc = aw.Document()
builder = aw.DocumentBuilder(doc)
table = builder.start_table()
builder.insert_cell()
builder.write('First row')
builder.end_row()
builder.insert_cell()
builder.write('Last row')
builder.end_table()
table_style = doc.styles.add(aw.StyleType.TABLE, 'MyTableStyle1').as_table_style()
table.style = table_style
# Set the table style to color the borders of the first row of the table in red.
table_style.conditional_styles.first_row.borders.color = aspose.pydrawing.Color.red
# Set the table style to color the borders of the last row of the table in blue.
table_style.conditional_styles.last_row.borders.color = aspose.pydrawing.Color.blue
# Below are two ways of using the "clear_formatting" method to clear the conditional styles.
# 1 -  Clear the conditional styles for a specific part of a table:
table_style.conditional_styles[0].clear_formatting()
self.assertEqual(aspose.pydrawing.Color.empty(), table_style.conditional_styles.first_row.borders.color)
# 2 -  Clear the conditional styles for the entire table:
table_style.conditional_styles.clear_formatting()
self.assertTrue(all((s.borders.color == aspose.pydrawing.Color.empty() for s in table_style.conditional_styles)))

See Also