How determine groups on next level from current group?
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2016-03-21
07:34 AM
- last edited on
‎2023-07-13
02:21 PM
by
Doreena Deng
‎2016-03-21
07:34 AM
API 19 Win.
Hello!
Help me please!)
I have this structure:
Group1 -> (Element1,Element2,Group2,...)
Group2 -> (Element3,..,GroupN)
I know guid of Group1.
How can I determine only next level groups from Group1?
Where I can give guid of Group2 from Group1?
Thank You!
Hello!
Help me please!)
I have this structure:
Group1 -> (Element1,Element2,Group2,...)
Group2 -> (Element3,..,GroupN)
I know guid of Group1.
How can I determine only next level groups from Group1?
Where I can give guid of Group2 from Group1?
Thank You!
Labels:
- Labels:
-
Add-On (C++)
1 REPLY 1
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2016-03-23 03:44 PM
‎2016-03-23
03:44 PM
It works:
GSErrCode ACAPI_ElementGroup_GetGroup (
API_Guid const& elemGuid
API_Guid* groupGuid
);
Instead elemGuid have to substitute the guid of the current group, then the function returns the guid of the group, the next level up.
It is obvious that function was conceived for this aim)).
Thank you!)
GSErrCode ACAPI_ElementGroup_GetGroup (
API_Guid const& elemGuid
API_Guid* groupGuid
);
Instead elemGuid have to substitute the guid of the current group, then the function returns the guid of the group, the next level up.
It is obvious that function was conceived for this aim)).

Thank you!)