XmlSchemaSimpleContent.Content Egenskap

Definition

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

Egenskapsvärde

Innehållet i XmlSchemaSimpleContentRestriction klassen eller XmlSchemaSimpleContentExtension .

Exempel

Med elementet simpleContent innehåller följande elementdeklaration en complexType som definierar innehållet i elementet som en decimal typ med ett enda attribut (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>

Kommentarer

Med simpleContent elementet kan du ange ett element som innehåller en enkel typ utan element och begränsa värdet för elementets innehåll eller utöka innehållet med attribut.

Gäller för