Customizing the metamodel > Keywords for USRPROPS > OVER
  
OVER
OVER is an argument of the ALIGN command; it puts the name of the property (or its label) over the property’s control (such as a text field, dropdown list box, and so on).
Contrast this keyword with BODY, which puts the name or label of the property to the left of the control.
Example
In the following example, all properties of the tab (Chapter keyword) are laid out so that the name or label of each property is placed over its control. The Number property is relabeled to be “Ranking”. Its label is placed over its control, which is a Numeric field. The Importance property has its name placed over its control, which is a dropdown list.
Definition "Use Case Step"
{
Chapter "My Properties"
LAYOUT { COLS 2 ALIGN OVER TAB }
PROPERTY "Importance"
{ Edit Text ListOnlycombo List "Importance" Length 20 Default "Should Have" }
PROPERTY "Number"
{ EDIT Numeric LENGTH 4 LABEL "Ranking"}
}
This graphic is described in the surrounding text.
See also
BODY
TAB
ALIGN
LABEL
JUSTIFY
Keywords for USRPROPS