FUNCTION IfcUniquePropertyName

(* SCHEMA IFC2X2_FINAL; *)
FUNCTION IfcUniquePropertyName
	(Properties : SET [1:?] OF IfcProperty)
	: LOGICAL;
  
  LOCAL
    Names : SET OF IfcIdentifier := [];
  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 IfcUniquePropertyName is references by the following definitions:
DefinitionType
 IfcComplexProperty ENTITY
 IfcPropertySet ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:20:56-04:00