Description
Used to define display properties for the status bar.
Diagram
Overview
|
STATUSBAR
Used to define display properties for the status bar.
|
rockermode optional Restriction of xs:string
Flag that determines if the rocker mode is displayed in the status bar (true) or not (false).
|
|
scale optional Restriction of xs:string
Flag that determines if the map scale is displayed in the status bar (true) or not (false).
|
|
units optional Restriction of xs:string
Flag that determines if the map units are displayed in the status bar (true) or not (false).
|
|
visible optional Restriction of xs:string
Flag that determines if the status bar is initially visible (true) or not (false).
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
rockermode | Restriction of xs:string | optional | true | | Flag that determines if the rocker mode is displayed in the status bar (true) or not (false). |
scale | Restriction of xs:string | optional | true | | Flag that determines if the map scale is displayed in the status bar (true) or not (false). |
units | Restriction of xs:string | optional | true | | Flag that determines if the map units are displayed in the status bar (true) or not (false). |
visible | Restriction of xs:string | optional | true | | Flag that determines if the status bar is initially visible (true) or not (false). |
Examples
Source
<xs:element name="STATUSBAR" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to define display properties for the status bar.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="true" name="rockermode">
<xs:annotation>
<xs:documentation>Flag that determines if the rocker mode is displayed in the status bar (true) or not (false).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="true" name="scale">
<xs:annotation>
<xs:documentation>Flag that determines if the map scale is displayed in the status bar (true) or not (false).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="true" name="units">
<xs:annotation>
<xs:documentation>Flag that determines if the map units are displayed in the status bar (true) or not (false).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="true" name="visible">
<xs:annotation>
<xs:documentation>Flag that determines if the status bar is initially visible (true) or not (false).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also