booleanFormat

指定 IPropertyDescription::FormatForDisplay 应如何将属性的值格式化为字符串。 仅当 displayInfo displayType=“String”>时<,这才适用。 每个 displayInfo 元素应只有一个 booleanFormat 元素。

如果有多个元素,则使用最后一个元素。 如果未提供 booleanFormat 元素,则默认属性设置将应用于属性说明。

语法

      <!-- booleanFormat -->
      <xs:element name="booleanFormat"  minOccurs="0" maxOccurs="1">
        <xs:complexType>
          <xs:attribute name="formatAs">
            <xs:simpleType>
              <xs:restriction base="xs:string">
                <xs:enumeration value="YesNo"/>
                <xs:enumeration value="OnOff"/>
                <xs:enumeration value="TrueFalse"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>

元素信息

父元素 子元素
displayInfo

 

属性

属性 说明
formatAs Public。 可选。 默认值为“YesNo”。 下面是有效的值。
含义
YesNo 默认。 将值的格式设置为“是”或“否”。 要求属性类型为布尔值。
OnOff 将值的格式设置为“On”或“Off”。 要求属性类型为布尔值。
TrueFalse 将值的格式设置为“True”或“False”。 要求属性类型为布尔值。