MSO_TEXT_UNDERLINE_TYPE¶Indicates the type of underline for text. Used with Font.underline
to specify the style of text underlining.
Alias: MSO_UNDERLINE
Example:
from pptx.enum.text import MSO_UNDERLINE
run.font.underline = MSO_UNDERLINE.DOUBLE_LINE
Specifies no underline.
Specifies a dash underline.
Specifies a dash line underline.
Specifies a long heavy line underline.
Specifies a dashed long line underline.
Specifies a dot dash heavy line underline.
Specifies a dot dash line underline.
Specifies a dot dot dash heavy line underline.
Specifies a dot dot dash line underline.
Specifies a dotted heavy line underline.
Specifies a dotted line underline.
Specifies a double line underline.
Specifies a heavy line underline.
Specifies a single line underline.
Specifies a wavy double line underline.
Specifies a wavy heavy line underline.
Specifies a wavy line underline.
Specifies underlining words.
Specifies a mixed of underline types.