Adds a new member to the currently defined Custom Object Preset.
FUNCTION IFC_DefPsetAddMember(
psetName : STRING;
propName : STRING;
propType : STRING): BOOLEAN;def vs.IFC_DefPsetAddMember(psetName, propName, propType):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| psetName | STRING | The Custom Property Set Name. |
| propName | STRING | Member Name. |
| propType | STRING | Member type. |
The possible values for the member type are 'IfcReal', 'IfcInteger', 'IfcText', 'IfcBoolean'.
PROCEDURE PsetAddMember;
VAR
bOK : BOOLEAN
BEGIN
{We suggest that 'Chair Details' is a Custom Pset and we want to add 'Height' member with type 'IfcReal'}
bOK := IFC_DefPsetAddMember( 'Chair Details', 'Height', 'IfcReal');
END;
RUN(PsetAddMember);# We suggest that 'Chair Details' is a Custom Pset and we want to add 'Height' member with type 'IfcReal'
ok = vs.IFC_DefPsetAddMember( 'Chair Details', 'Height', 'IfcReal');IFC_DefPsetBegin IFC_DefPsetEnd
Availability: from Vectorworks 2016.