BorderType enumeration

BorderType enumeration

Specifies sides of a border. To learn more, visit the Programming with Documents documentation article.

Members

NameDescription
NONEDefault value.
BOTTOMSpecifies the bottom border of a paragraph or a table cell.
LEFTSpecifies the left border of a paragraph or a table cell.
RIGHTSpecifies the right border of a paragraph or a table cell.
TOPSpecifies the top border of a paragraph or a table cell.
HORIZONTALSpecifies the horizontal border between cells in a table or between conforming paragraphs.
VERTICALSpecifies the vertical border between cells in a table.
DIAGONAL_DOWNSpecifies the diagonal border in a table cell.
DIAGONAL_UPSpecifies the diagonal border in a table cell.

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.0
top_border.line_style = aw.LineStyle.DASH_SMALL_GAP
# Set ThemeColor only when LineWidth or LineStyle setted.
top_border.theme_color = awthemes.ThemeColor.ACCENT1
top_border.tint_and_shade = 0.25

builder.writeln("Text with a top border.")

doc.save(ARTIFACTS_DIR + "Border.paragraph_top_border.docx")

See Also