XmlSchemaComplexType.IsMixed Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets information that determines if the complex type has a mixed content model (markup within the content).
public:
virtual property bool IsMixed { bool get(); void set(bool value); };
public override bool IsMixed { get; set; }
member this.IsMixed : bool with get, set
Public Overrides Property IsMixed As Boolean
Property Value
true
, if character data can appear between child elements of this complex type; otherwise, false
. The default is false
. Optional.
Remarks
Indicates if character data can appear between the child elements of this complexType
. If the simpleContent
element is a child element, the mixed
attribute is not allowed (false
). If the complexContent
element is a child element, the mixed
attribute can be overridden by the mixed
attribute on the complexContent
element.