XmlSchemaSimpleContent.Content プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
XmlSchemaSimpleContentRestriction または XmlSchemaSimpleContentExtension の 1 つを取得します。
public:
virtual property System::Xml::Schema::XmlSchemaContent ^ Content { System::Xml::Schema::XmlSchemaContent ^ get(); void set(System::Xml::Schema::XmlSchemaContent ^ value); };
public override System.Xml.Schema.XmlSchemaContent? Content { get; set; }
public override System.Xml.Schema.XmlSchemaContent Content { get; set; }
member this.Content : System.Xml.Schema.XmlSchemaContent with get, set
Public Overrides Property Content As XmlSchemaContent
プロパティ値
XmlSchemaSimpleContentRestriction
クラスまたは XmlSchemaSimpleContentExtension
クラスに格納される内容。
例
要素をsimpleContent
使用して、次の要素宣言には、要素の内容を単一の属性 (sizing
) を持つ型としてdecimal
定義する a が含まれていますcomplexType
。
<xs:element name="shoeSize">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="sizing">
<xs:restriction base="xs:string">
<xs:enumeration value="US"/>
<xs:enumeration value="European"/>
<xs:enumeration value="UK"/>
<xs:enumeration value="Japan"/>
</xs:restriction>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
注釈
要素 simpleContent
を使用すると、要素のない単純な型を含む要素を指定し、要素のコンテンツの値を制限したり、属性を使用してコンテンツを拡張したりできます。