SOLVED!
Get object's parameter description (not just name)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2024-09-03 05:40 PM
ā2024-09-03
05:40 PM
HI everyone. I am looking for a way to get a parameter description from a placed GSM object.
I can get parameter's name with
const API_AddParType& parameter = (*memo.params)[ii];
GS::UniString ParameterName = parameter.name;
but the values of "valueDescription" or "uDescname" of the struct API_AddParType
are always empty. Is there another way?
are always empty. Is there another way?
BIMquants.comBETA - Quantities and Costs Estimation in Archicad - BETA testers needed.
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Accepted Solutions
Solution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2024-09-04 04:02 AM
ā2024-09-04
04:02 AM
Hi,
I'd suggest you to use ACAPI_LibraryPart_GetParams() to get parameter description.
HTH.
2 REPLIES 2
Solution
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2024-09-04 04:02 AM
ā2024-09-04
04:02 AM
Hi,
I'd suggest you to use ACAPI_LibraryPart_GetParams() to get parameter description.
HTH.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā2024-09-04 06:36 PM
ā2024-09-04
06:36 PM
Thanks, that worked fine.
BIMquants.comBETA - Quantities and Costs Estimation in Archicad - BETA testers needed.