I searched for a enum class to set the textDirection value and did not found any JAXB representation as undefined.
Is there a helper class for that or planned?
TextDirection textdirection = wmlObjectFactory.createTextDirection();
textdirection.setVal( "btLr");
Kind regards,
Andreas
- Code: Select all
<w:textDirection w:val="btLr"/>
Java class for CTTextDirection complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_TextDirection">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<attribute name="val" use="required">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="lrTb"/>
<enumeration value="tbRl"/>
<enumeration value="btLr"/>
<enumeration value="lrTbV"/>
<enumeration value="tbRlV"/>
<enumeration value="tbLrV"/>
</restriction>
</simpleType>
</attribute>
</restriction>
</complexContent>
</complexType>