Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using this rule for long time, and now need to add custom property to this rule. Could you guys help me?
Thanks
'This rule will make in browser part number, description,
oDoc = ThisDoc.Document
oSheets = oDoc.Sheets
For Each oSheet In oSheets
oSheet.activate
oView = oSheet.DrawingViews.Item(1)
modelName = oView.ReferencedDocumentDescriptor.ReferencedDocument
oProp = modelName.PropertySets.Item("Design Tracking Properties")
ActiveSheet.Sheet.Name = oProp.Item("Part Number").Value & " " & oProp.Item("Description").Value ‘& " " & oProp.Item("Authority").Value
Next
oSheets(1).activate
iLogicVb.UpdateWhenDone = True
Solved! Go to Solution.