2.6.4.9 ST_OnOff

Target namespace: http://schemas.microsoft.com/office/word/2010/wordml

Referenced by: CT_LinearShadeProperties, CT_StyleSet, CT_OnOff

A simple type that specifies a value for a binary (true or false) property.

Possible values for this type are listed in the following table.

Value

Meaning

true

Specifies the value is true.

false

Specifies the value is false.

0

Specifies the value is false.

1

Specifies the value is true.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xsd:simpleType name="ST_OnOff">
   <xsd:restriction base="xsd:string">
     <xsd:enumeration value="true"/>
     <xsd:enumeration value="false"/>
     <xsd:enumeration value="0"/>
     <xsd:enumeration value="1"/>
   </xsd:restriction>
 </xsd:simpleType>

See section 5.1 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).