Layer Combination API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-11 10:50 AM
I want to create an add-on that switches to the view named "9:平面画像作成用". Is there a way to do this? Please guide me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-12 06:27 AM
GSErrCode ACAPI_Navigator_ChangeCurrLayerComb ( API_AttributeIndex * layerCombIndex )
Member of Architalk since 2003, but missed the migration to Graphisoft. Melbourne, Australia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-12 06:29 AM
Can you give me an example snippet to switch to that layer? I’ve tried it but it doesn’t switch to the layer. Thank you sir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-12 09:06 AM - edited 2025-05-12 09:06 AM
API_AttributrIndex layerCombInd = 21; // the layer combination id of the desired layer
GSErrCode err = NoError;
in Archicad 25 it was
err = ACAPI_Environment(APIEnv_changeCurrLayerCombID, &layerCombInd);
now in Archicad 28 i think it is
err =ACAPI_Navigator_ChangeCurrLayerComb ( &layerCombInd );
Member of Architalk since 2003, but missed the migration to Graphisoft. Melbourne, Australia
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-12
11:17 AM
- last edited on
2025-05-12
05:42 PM
by
Laszlo Nagy
Thank you sir, but not work @@
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2025-05-12 11:27 AM
Thank you sir, I am done