共用方式為


XmlSchemaSimpleContent.Content 屬性

定義

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

屬性值

XmlSchemaContent

XmlSchemaSimpleContentRestrictionXmlSchemaSimpleContentExtension 類別中包含的內容。

範例

simpleContent使用 元素時,下列專案宣告包含 , complexType 其會將專案的內容定義為具有單一 decimal 屬性的類型, (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>  

備註

元素 simpleContent 可讓您將專案指定為包含不含元素的簡單型別,並限制元素內容的值,或使用屬性擴充內容。

適用於