Windchill のその他の機能 > 製造プロセス管理 > 製品エクスプローラ (PSE) のカスタマイズ > セクション見出し内の属性表示のカスタマイズ > 表示する列数のカスタマイズ
  
表示する列数のカスタマイズ
SectionHeading タグ内に表示する列の数をカスタマイズできます。次の例のようにレイアウトを作成できます。
属性グループの前の SectionHeading を指定すると、それらの属性が <Label> タグで指定されたタイトルの付いたボーダーで囲まれます。<Label> タグの詳細については、グループ属性の表示のカスタマイズを参照してください。
numberOfColumns が "1" に設定されていれば、単一の属性列が表示されます。"2" に設定されていれば、2 つの属性列が表示されます。
上の図の例では、URL0: 2 つの入力フィールドを持つが単一属性です。セクション内のいずれかの属性が必須の場合は、ボーダー上のラベルにも必須とマークされます。
サンプルコード:
<AttributeGroup id="ptc.wnc.exp.CreatePartTab4"
scrollable="true" displayMode="edit">
<SectionHeading numberOfColumns="1">
<Label>
<Resource key="checkoutInfoStateLabel"/>
</Label>
</SectionHeading>
<CellDefinition id="String0">
<AttributeDefinition attributeId="IBA|String0"/>
</CellDefinition>
<CellDefinition id="URL0">
<AttributeDefinition attributeId="IBA|URL0"/>
</CellDefinition>
<SectionHeading numberOfColumns="2">
<Label>
<Resource key="serialNumberValueLabel"/>
</Label>
</SectionHeading>
<CellDefinition id="Boolean0">
<AttributeDefinition attributeId="IBA|Boolean0"
required="true"/>
</CellDefinition>
<CellDefinition id="Integer0">
<AttributeDefinition attributeId="IBA|Integer0"
required="true"/>
</CellDefinition>
<CellDefinition id="Real0">
<AttributeDefinition attributeId="IBA|Real0"/>
</CellDefinition>
<CellDefinition id="DateTime0">
<AttributeDefinition attributeId="IBA|DateTime0"/>
</CellDefinition>
</AttributeGroup>