FUNCTION IfcUniqueQuantityNames

(* SCHEMA IFC4; *)
FUNCTION IfcUniqueQuantityNames
(Properties : SET [1:?] OF IfcPhysicalQuantity)
:LOGICAL;

LOCAL
  Names : SET OF IfcLabel := [];
END_LOCAL;

REPEAT i:=1 TO HIINDEX(Properties);
  Names := Names + Properties[i].Name;
END_REPEAT;
RETURN (SIZEOF(Names) = SIZEOF(Properties));
END_FUNCTION;

Referenced By

Defintion IfcUniqueQuantityNames is references by the following definitions:
DefinitionType
 IfcElementQuantity ENTITY
 IfcPhysicalComplexQuantity ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2016-06-01T11:21:50-04:00