XmlSchemaSimpleContent.Content Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá jeden z XmlSchemaSimpleContentRestriction nebo XmlSchemaSimpleContentExtension.
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
Hodnota vlastnosti
Obsah obsažený v rámci XmlSchemaSimpleContentRestriction
třídy XmlSchemaSimpleContentExtension
Příklady
Pomocí elementu simpleContent
následující deklarace elementu obsahuje complexType
, který definuje obsah elementu decimal
jako typ s jedním atributem (sizing
):
<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>
Poznámky
Element simpleContent
umožňuje zadat prvek jako obsahující jednoduchý typ bez prvků a omezit hodnotu obsahu elementu nebo rozšířit obsah o atributy.