Deletes all IFC data attached to the object.
PROCEDURE IFC_DeleteIFCInfo(hObject : HANDLE, true);def vs.IFC_DeleteIFCInfo(hObject:HANDLE, true);
return None| Name | Type | Description |
|---|---|---|
| hObject | HANDLE | Handle to the object. |
| bDoUndo | BOOLEAN | Use undo or not. |
PROCEDURE DeleteIFCInfo;
VAR
bUndo : BOOLEAN
bOK : BOOLEAN
hObject : HANDLE
BEGIN
{We suggest that we have a handle to an object that has IFC data attached and we want to remove it and have the option to UNDO the change}
bUndo := TRUE;
bOK := IFC_DeleteIFCInfo( hObject, bUndo );
END;
RUN(DeleteIFCInfo);# We suggest that we have a handle to an object that has IFC data attached and we want to remove it and have the option to UNDO the change
ok = vs.IFC_DeleteIFCInfo( hObject, True );Availability: from Vectorworks 2017