theme_color property

Border.theme_color property

Gets or sets the theme color in the applied color scheme that is associated with this Border object.

@property
def theme_color(self) -> aspose.words.themes.ThemeColor:
    ...

@theme_color.setter
def theme_color(self, value: aspose.words.themes.ThemeColor):
    ...

Examples

Shows how to insert a paragraph with a top border.

doc = aw.Document()
builder = aw.DocumentBuilder(doc)
top_border = builder.paragraph_format.borders.top
top_border.line_width = 4
top_border.line_style = aw.LineStyle.DASH_SMALL_GAP
# Set ThemeColor only when LineWidth or LineStyle setted.
top_border.theme_color = aw.themes.ThemeColor.ACCENT1
top_border.tint_and_shade = 0.25
builder.writeln('Text with a top border.')
doc.save(file_name=ARTIFACTS_DIR + 'Border.ParagraphTopBorder.docx')

See Also