Customizing the metamodel > Keywords for USRPROPS > FLOAT
  
FLOAT
FLOAT is one of the allowed types for a property. It specifies that the property is a floating point number: only digits, decimal mark, positive/negative mark and thousands separators can be entered in the field. The values following the FLOAT statement specify the maximum number of digits that can be entered in the field (integer digits, decimal digits).
Example
DEFINITION "A"
{
PROPERTY "Cost" { EDIT Float 3,2 }
}
Where 3 represents the maximum number of digits for the integer part and 2 represents the maximum number of digits for the decimal part.
A range can be also defined for the property by using MIN, MAX: see MIN, MINIMUM and MAX, MAXIMUM.
No arithmetic is supported.
See also
NUMERIC
Keywords for USRPROPS