特定管理 > 訂做企業物件 > 物件初始化規則管理 > 瞭解物件初始化規則 > 定義用於物件初始化規則的 XML 文件內容 > 與 AttrValue 搭配使用的演算法範例 > 使用 EnumTypeConstant 的文件屬性範例
  
使用 EnumTypeConstant 的文件屬性範例
下列範例顯示了設定文件的 docType 與部門屬性的現成 XML。這些屬性不會顯示在使用者介面中,但是必須與值一起提供。PTC 提供物件初始化規則,這些規則提供這些屬性的值。若要顯示這些屬性,需要自訂使用者介面。
wt.rule.algorithm.EnumTypeConstant 演算法需要下列引數:
定義常數列舉清單的類別的類別名稱
預設常數
此範例被格式化為依頁面顯示。請始終在一行中輸入每個標籤:
<AttributeValues objType="wt.doc.WTDocument">
<!-- set the doc type - enumerated type, this field is no longer displayed
in the UI so just default it -->
<AttrValue id="docType" algorithm="wt.rule.algorithm.EnumTypeConstant">
<Arg>wt.doc.DocumentType</Arg>
<Arg>$$Document</Arg>
</AttrValue>
<!-- set the department type - enumerated type, this field is no longer displayed
in the UI so just default it -->
<AttrValue id="department" algorithm="wt.rule.algorithm.EnumTypeConstant">
<Arg>wt.doc.DepartmentList</Arg>
<Arg>ENG</Arg>
</AttrValue>
</AttributeValues>