Example: |
The following code snippet sets the variable AllCategorial to TRUE if all columns of the data table are of either nominal or ordinal type:
...
var
AllCategorial : boolean;
...
AllCategorial := (ord(FindLowestMLevel(0,0)) >= ord(stNominal)) and
(ord(FindHighestMLevel(0,0)) <= ord(stOrdinal));
...
|