2.3.4.2.89 Sheet_Type

Target namespace: http://schemas.microsoft.com/office/visio/2011/1/core

Referenced by: StyleSheet_Type, DocumentSheet_Type, PageSheet_Type, ShapeSheet_Type

A complex type that specifies a collection of properties associated with a style, web drawing, drawing page, or shape.

Child Elements:

Cell: A Cell_Type element that specifies a single property.

Trigger: A Trigger_Type element that specifies the existence of an update trigger associated with the sheet.

Section: A Section_Type element that specifies a collection of related properties.

Attributes:

LineStyle: An xsd:unsignedInt ([XMLSCHEMA2] section 3.3.22) attribute that specifies the identifier of the style sheet from which to inherit line formatting. It MUST be the value of the ID attribute associated with a StyleSheet_Type in the web drawing.

FillStyle: An xsd:unsignedInt ([XMLSCHEMA2] section 3.3.22) attribute that specifies the identifier of the style sheet from which to inherit fill formatting. It MUST be the value of the ID attribute associated with a StyleSheet_Type in the web drawing.

TextStyle: An xsd:unsignedInt ([XMLSCHEMA2] section 3.3.22) attribute that specifies the identifier of the style sheet from which to inherit text formatting. It MUST be the value of the ID attribute associated with a StyleSheet_Type in the web drawing.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this complex type.

 <xsd:complexType name="Sheet_Type" abstract="true">
   <xsd:sequence minOccurs="0" maxOccurs="unbounded">
     <xsd:element name="Cell" type="Cell_Type" minOccurs="0" maxOccurs="unbounded"/>
     <xsd:element name="Trigger" type="Trigger_Type" minOccurs="0" maxOccurs="unbounded"/>
     <xsd:element name="Section" type="Section_Type" minOccurs="0" maxOccurs="unbounded"/>
     <xsd:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
   </xsd:sequence>
   <xsd:attribute name="LineStyle" type="xsd:unsignedInt"/>
   <xsd:attribute name="FillStyle" type="xsd:unsignedInt"/>
   <xsd:attribute name="TextStyle" type="xsd:unsignedInt"/>
   <xsd:anyAttribute namespace="##other" processContents="lax"/>
 </xsd:complexType>