ScenarioArea DTD and XML definitions

The ScenarioArea has the following entry in the DTD file:
Table 1. ScenarioArea definition
Line entry in the DTD file Description
<!ELEMENTScenarioArea (Scenario)+> A ScenarioArea can consist of one or more Scenario elements
<!ATTLIST ScenarioArea
    width CDATA "600"
    name CDATA #IMPLIED
    height CDATA "82">
Attribute list

The Desktop inserts the ScenarioArea element dynamically in the next location available in its pane
Table 2. ScenarioArea attributes
Attribute Description
width Width of the whole area
name Name used by the Desktop to identify this component
height Height of the whole area
The following is an example of an XML definition for a ScenarioArea:
<ScenarioArea width="500" height="80" > 
    <Scenario label="Non Cash Operations" hotKey="CTRL+1">
        ........
    </Scenario>
    <Scenario label="Cash Operations" hotKey="CTRL+2">
        ........
    </Scenario>
    <Scenario label="Agreements" hotKey="CTRL+3">
        ........
    </Scenario>
</ScenarioArea>