Friday
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.
Friday
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;
Friday
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;