Is there a way to change ID, Structural Function and Position properties of single element ?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2018-06-18
01:12 PM
- last edited on
‎2022-12-06
01:34 PM
by
Daniel Kassai
‎2018-06-18
01:12 PM
Hello,
I'm looking for a function to change ID, Structural Function and Position properties of single element ?
Thanks in advance,
Julian
I'm looking for a function to change ID, Structural Function and Position properties of single element ?
Thanks in advance,
Julian
Labels:
- Labels:
-
Add-On (C++)
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2018-06-18 03:43 PM
‎2018-06-18
03:43 PM
Try ACAPI_Element_SetCategoryValue for position and structural function.
The ID is stored in the element memo - you can change it there.
The ID is stored in the element memo - you can change it there.
Ralph Wessel BArch
Central Innovation
Central Innovation
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2018-06-19 10:56 AM
‎2018-06-19
10:56 AM
Thank you! I was able to set position and structural function with ACAPI_Element_SetCategoryValue .
Now I'm looking the element memo structure in the docs, but I can't figure out where is the ID stored ?
Now I'm looking the element memo structure in the docs, but I can't figure out where is the ID stored ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2018-06-19 11:15 AM
‎2018-06-19
11:15 AM
API_ElementMemo.elemInfoString
Ralph Wessel BArch
Central Innovation
Central Innovation
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2018-06-19 12:04 PM
‎2018-06-19
12:04 PM
Thank you very much!