set_shading method

set_shading(texture, foreground_color, background_color)

Sets shading to the specified values on whole table.

def set_shading(self, texture: aspose.words.TextureIndex, foreground_color: aspose.pydrawing.Color, background_color: aspose.pydrawing.Color):
    ...
ParameterTypeDescription
textureTextureIndexThe texture to apply.
foreground_coloraspose.pydrawing.ColorThe color of the texture.
background_coloraspose.pydrawing.ColorThe color of the background fill.

Examples

Shows how to apply an outline border to a table.

doc = aw.Document(file_name=MY_DIR + 'Tables.docx')
table = doc.first_section.body.tables[0]
# Align the table to the center of the page.
table.alignment = aw.tables.TableAlignment.CENTER
# Clear any existing borders and shading from the table.
table.clear_borders()
table.clear_shading()
# Add green borders to the outline of the table.
table.set_border(aw.BorderType.LEFT, aw.LineStyle.SINGLE, 1.5, aspose.pydrawing.Color.green, True)
table.set_border(aw.BorderType.RIGHT, aw.LineStyle.SINGLE, 1.5, aspose.pydrawing.Color.green, True)
table.set_border(aw.BorderType.TOP, aw.LineStyle.SINGLE, 1.5, aspose.pydrawing.Color.green, True)
table.set_border(aw.BorderType.BOTTOM, aw.LineStyle.SINGLE, 1.5, aspose.pydrawing.Color.green, True)
# Fill the cells with a light green solid color.
table.set_shading(aw.TextureIndex.TEXTURE_SOLID, aspose.pydrawing.Color.light_green, aspose.pydrawing.Color.empty())
doc.save(file_name=ARTIFACTS_DIR + 'Table.SetOutlineBorders.docx')

See Also