08-20-2019
09:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
08-20-2019
09:17 PM
Hi Jef_E
I found something close in what I'm looking in this post.
Can you help me in figuring out how to extract the Category Name from a Library?
I have this code but I just stuck thinking too much
Thank you in advance if you can help me on this matter
Dim oPartDoc = ThisDoc.Document Dim oAssetLib As AssetLibrary oAssetLib = oPartDoc.Item("CategoryName") Dim oAsset As Asset oAsset = oAssetLib.MaterialAssetCategories.Item(1) For Each oValue As AssetCategory In oAsset Debug.Print(oValue.DisplayName) Next