Creates underline formatting for a run in a WordprocessingML document.
The u element specifies the style and optional color of underline formatting applied to text.
Reference: http://officeopenxml.com/WPrun.php
<xsd:complexType name="CT_Underline"> <xsd:attribute name="val" type="ST_Underline" use="required"/> <xsd:attribute name="color" type="ST_HexColor"/> <xsd:attribute name="themeColor" type="ST_ThemeColor"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber"/></xsd:complexType> Copy
<xsd:complexType name="CT_Underline"> <xsd:attribute name="val" type="ST_Underline" use="required"/> <xsd:attribute name="color" type="ST_HexColor"/> <xsd:attribute name="themeColor" type="ST_ThemeColor"/> <xsd:attribute name="themeTint" type="ST_UcharHexNumber"/> <xsd:attribute name="themeShade" type="ST_UcharHexNumber"/></xsd:complexType>
Optional
// Simple single underlinecreateUnderline();// Double underlinecreateUnderline(UnderlineType.DOUBLE);// Red wavy underlinecreateUnderline(UnderlineType.WAVE, "FF0000"); Copy
// Simple single underlinecreateUnderline();// Double underlinecreateUnderline(UnderlineType.DOUBLE);// Red wavy underlinecreateUnderline(UnderlineType.WAVE, "FF0000");
Creates underline formatting for a run in a WordprocessingML document.
The u element specifies the style and optional color of underline formatting applied to text.
Reference: http://officeopenxml.com/WPrun.php
XSD Schema