License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…
2024-09-27 03:04 AM
Is it possible to use the API to split an element into two parts by a line?
In other words, is it possible to automate a splitting operation that users can do manually with a splitting tool?
Solved! Go to Solution.
2024-09-27 07:36 PM
I don't think so - these are the user editing commands supported by the API:
typedef enum {
APIEdit_Drag = 'DRAG',
APIEdit_Rotate = 'ROTZ',
APIEdit_Mirror = 'MIRR',
APIEdit_Elevate = 'ELEV',
APIEdit_Stretch = 'STRE',
APIEdit_VertStretch = 'VSTR',
APIEdit_Resize = 'RSIZ',
APIEdit_General = 'GENE',
APIEdit_PHeightStretch = 'PHST', // preserved height stretch (for slanted beam / column)
APIEdit_PDirStretch = 'PDST' // preserved direction stretch (for slanted beam / column)
} API_EditCmdID;
2024-09-27 07:36 PM
I don't think so - these are the user editing commands supported by the API:
typedef enum {
APIEdit_Drag = 'DRAG',
APIEdit_Rotate = 'ROTZ',
APIEdit_Mirror = 'MIRR',
APIEdit_Elevate = 'ELEV',
APIEdit_Stretch = 'STRE',
APIEdit_VertStretch = 'VSTR',
APIEdit_Resize = 'RSIZ',
APIEdit_General = 'GENE',
APIEdit_PHeightStretch = 'PHST', // preserved height stretch (for slanted beam / column)
APIEdit_PDirStretch = 'PDST' // preserved direction stretch (for slanted beam / column)
} API_EditCmdID;