TRUEFALSE 简单类型 (DeploymentManifest)
适用于: SharePoint 2016 |SharePoint Foundation 2013 |SharePoint Online |SharePoint Server 2013
使用特定的书写形式指定布尔值。
定义
<xs:simpleType name="TRUEFALSE">
<xs:restriction base="xs:string">
<xs:enumeration value="TRUE" />
<xs:enumeration value="FALSE" />
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
类型
xs:string
枚举值
值 | 说明 |
---|---|
TRUE |
使用所有大写字母指定布尔值 true。 |
FALSE |
使用所有大写字母指定布尔值 false。 |
真 |
使用所有小写字母指定布尔值 true。 |
假 |
使用所有小写字母指定布尔值 false。 |