<ST_Visibility> (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 workbook window is visible.

Referenced By

<workbookView@visibility>3.2.30)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_Visibility">
	<restriction base="xsd:string">
	<enumeration value="visible"/>
	<enumeration value="hidden"/>
	<enumeration value="veryHidden"/>
	</restriction>
</simpleType>