Creates an emphasis mark element for a WordprocessingML document.
Emphasis marks are characters (typically dots or circles) placed above or below text to emphasize it. This is commonly used in East Asian typography.
Reference: http://officeopenxml.com/WPrun.php
<xsd:complexType name="CT_Em"> <xsd:attribute name="val" type="ST_Em" use="required"/></xsd:complexType> Copy
<xsd:complexType name="CT_Em"> <xsd:attribute name="val" type="ST_Em" use="required"/></xsd:complexType>
// Apply dot emphasis markcreateEmphasisMark(EmphasisMarkType.DOT);// Default to dotcreateEmphasisMark(); Copy
// Apply dot emphasis markcreateEmphasisMark(EmphasisMarkType.DOT);// Default to dotcreateEmphasisMark();
Creates an emphasis mark element for a WordprocessingML document.
Emphasis marks are characters (typically dots or circles) placed above or below text to emphasize it. This is commonly used in East Asian typography.
Reference: http://officeopenxml.com/WPrun.php
XSD Schema