<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 |
---|---|
|
Indicates the book window is hidden, but can be shown by the user via the user interface. |
|
Indicates the sheet is hidden and cannot be shown in the user interface (UI). This state is only available programmatically. |
|
Indicates the sheet is visible. |
Referenced By |
---|
|
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>