AreaUnit
Short summary
This enumeration contains common physical area units.
Underlying type: default
Components
| Name | Value | Comment |
|---|---|---|
| SQUARE_METER | 0 | - |
| US_SQUARE_INCH | implicit | - |
| US_SQUARE_FOOT | implicit | - |
| US_SQUARE_YARD | implicit | - |
| US_ACRE | implicit | - |
| HECTARE | implicit | - |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE AreaUnit :
(
SQUARE_METER := 0,
US_SQUARE_INCH,
US_SQUARE_FOOT,
US_SQUARE_YARD,
US_ACRE,
HECTARE
);
END_TYPE