XmlSchema.ElementFormDefault Property

Definition

Gets or sets the form for elements declared in the target namespace of the schema.

public:
 property System::Xml::Schema::XmlSchemaForm ElementFormDefault { System::Xml::Schema::XmlSchemaForm get(); void set(System::Xml::Schema::XmlSchemaForm value); };
public System.Xml.Schema.XmlSchemaForm ElementFormDefault { get; set; }
member this.ElementFormDefault : System.Xml.Schema.XmlSchemaForm with get, set
Public Property ElementFormDefault As XmlSchemaForm

Property Value

The XmlSchemaForm value that indicates if elements from the target namespace are required to be qualified with the namespace prefix. The default is None.

Remarks

The value must be one of the XmlSchemaForm values shown in the following table.

XmlSchemaForm Value Description
None The element form is not specified in the schema.
Qualified Elements from the target namespace must be qualified with the namespace prefix.
Unqualified Elements from the target namespace are not required to be qualified with the namespace prefix.

This value is the global default for all elements declared in the target namespace. Individual elements can override this setting for the local scope by using the form attribute.

Applies to