<ST_Pane>
(Pane Types)
Defines the names of the four possible panes into which the view of a workbook in the application can be split.
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 |
---|---|
|
Bottom left pane, when both vertical and horizontal splits are applied. This value is also used when only a horizontal split has been applied, dividing the pane into upper and lower regions. In that case, this value specifies the bottom pane. |
|
Bottom right pane, when both vertical and horizontal splits are applied. |
|
Top left pane, when both vertical and horizontal splits are applied. This value is also used when only a horizontal split has been applied, dividing the pane into upper and lower regions. In that case, this value specifies the top pane. This value is also used when only a vertical split has been applied, dividing the pane into right and left regions. In that case, this value specifies the left pane |
|
Top right pane, when both vertical and horizontal splits are applied. This value is also used when only a vertical split has been applied, dividing the pane into right and left regions. In that case, this value specifies the right pane. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Pane">
<restriction base="xsd:string">
<enumeration value="bottomRight"/>
<enumeration value="topRight"/>
<enumeration value="bottomLeft"/>
<enumeration value="topLeft"/>
</restriction>
</simpleType>