Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
From a ContentCenter Part i need to know witch category (in this case Bolts)
it belongs to.
Fasteners
--> Bolts
Any ideas on how to do that?
' a couple of examples im working from.
ContentFamily = oContentCenter.GetContentObject("v3#" & propSet("FamilyId").Value & "#")
'------
oContentTableRow = oContentCenter.GetContentObject("v3#" & propSet("FamilyId").Value & "#" & propSet("MemberId").Value)
'----
Dim oContentNode As ContentTreeViewNode = oContentCenter.TreeViewTopNode
For Each oChild As ContentTreeViewNode In oContentNode.ChildNodes
Debug.Print(oChild.DisplayName)
For Each oChildd As ContentTreeViewNode In oChild.ChildNodes
Debug.Print("CHild - " & oChildd.DisplayName)
Next
Next
Solved! Go to Solution.