[Table of Contents] [docx version]
SpreadsheetML Reference Material - Table of Contents
ST_SheetState (Sheet Visibility Types)
This simple type defines the possible states for sheet visibility.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
| Enumeration Value | Description | 
| hidden (Hidden) | Indicates the book window is hidden, but can be shown by the user via the user interface. | 
| veryHidden (Very Hidden) | Indicates the sheet is hidden and cannot be shown in the user interface (UI). This state is only available programmatically. | 
| visible (Visible) | Indicates the sheet is visible. | 
| Referenced By | 
| customSheetView@state (§3.3.1.22); customSheetView@state (§3.3.1.23); sheet@state (§3.2.19) | 
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_SheetState">
<restriction base="xsd:string">
<enumeration value="visible"/>
<enumeration value="hidden"/>
<enumeration value="veryHidden"/>
</restriction>
</simpleType>