tslistschema.xml

来自「Windows Web脚本开发指南/(美) Dan Heflin, Todd N」· XML 代码 · 共 28 行

XML
28
字号
<Schema xmlns="urn:schemas-microsoft-com:xml-data"
        xmlns:dt="urn:schemas-microsoft-com:datatypes">

<AttributeType name="createdBy" required="yes" />
<AttributeType name="startDate" required="yes"/>
<AttributeType name="file" required="yes" />
<AttributeType name="status" dt:type="enumeration" dt:values="sent modified new" default="new"/>

<ElementType  name="timeSheet">
  <attribute type="createdBy" />
  <attribute type="startDate" />
  <attribute type="file" />
  <attribute type="status" />
</ElementType>

<ElementType  name="Completed">
  <element type="timeSheet" />
</ElementType>
<ElementType  name="Open">
  <element type="timeSheet" />
</ElementType>
<ElementType name="timeSheets">
  <element type="Completed" />
  <element type="Open" />
</ElementType>
</Schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?