StringTableType 複合型
- [アーティクル]
-
-
マニフェストで参照できるローカライズされた文字列の一覧を定義します。
<xs:complexType name="StringTableType">
<xs:choice
minOccurs="0"
maxOccurs="unbounded"
>
<xs:element name="string">
<xs:complexType
mixed="true"
>
<xs:attribute name="id"
type="string"
use="required"
/>
<xs:attribute name="value"
type="string"
use="required"
/>
<xs:attribute name="stringType"
type="string"
use="optional"
/>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:anyAttribute
processContents="lax"
namespace="##other"
/>
</xs:complexType>
子要素
要素 |
Type |
Description |
文字列 |
|
ローカライズされた文字列を定義します。
|
属性
名前 |
型 |
説明 |
id |
string |
文字列テーブル内の文字列を一意に識別する識別子。 たとえば、"Printer.Connection" などです。
|
stringType |
string |
使用されていません。
|
value |
string |
ローカライズされた文字列。
|
message 属性を含む任意のマニフェスト型から文字列を参照できます。 stringType が "string" で ID が "Printer.Connection" の文字列を参照するには、$(string) を使用します。Printer.Connection) をメッセージ属性の値として指定します。
要件
要件 |
値 |
サポートされている最小のクライアント
|
Windows Vista [デスクトップ アプリのみ]
|
サポートされている最小のサーバー
|
Windows Server 2008 [デスクトップ アプリのみ]
|