In python I have this example
spec.applicability.append(ifctester.ids.Entity(name="IFCPROJECT"))
spec.requirements.append(
ifctester.ids.Attribute(
name="Name",
value="2020-11",...
There are 10 or more attributes of the entity IfcProject.
I've created a clipping which list all the attributes, from which I want to choose one.
ifctester.ids.Attribute(
name="#SELECT#GlobalId|OwnerHistory|Name|Description|ObjectType|LongName|Phase|RepresentationContexts|UnitsInContext#",
value="#PLACEHOLDER#",
instructions="#PLACEHOLDER#"
)#INSERTION#
the completion executes but does not allow me to select from the list.
Am I expecting too much for the selection or is my syntax incorrect?