Autodesk Inventor
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
iLogic for View Representa tion of Part File (in Assy)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi
I have received a great solution from Bobvdd allowing ilogic control of the view rep in a part file (not an assembly file). The code below works brilliantly when the part file is the active document. However when the part is placed in an assembly and the ilogic is run with the assembly active, the code produces no result. Is anyone able to advise on how to modify the top 6 lines of code? Many thanks for your help.
Dim oApp As Inventor.Application
oApp = ThisApplication
Dim oDoc As Document
oDoc = ThisDoc.Document
Dim ocompdef As ComponentDefinition
ocompdef = odoc.ComponentDefinition
'Then apply specified View Representation
If Colour = "Red" Then
ocompdef.RepresentationsManager.DesignViewRepresen
End If
Re: iLogic for View Representa tion of Part File (in Assy)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi CadlineSupport,
Here is a basic "template" I've used for working with parts in assemblies. You can give it a go, I didn't have a chance to try it though.
Here is another approach that might work:
I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com
'Define the open document
Dim openDoc As Document
openDoc = ThisDoc.Document
Dim docFile As Document
'kAssemblyDocumentObject = 12291
If openDoc.DocumentType = 12291 Then
'Iterate though the part files in the assembly
For Each docFile In openDoc.AllReferencedDocuments
'kPartDocumentObject = 12290
If docFile.DocumentType = 12290 Then
'-------- your code here --------
End If
Next
Else
MessageBox.Show("This file is not an Assembly.", "iLogic")
End If

Did you find this reply helpful ? If so please use the Accept as Solution or Kudos button below.
Re: iLogic for View Representa tion of Part File (in Assy)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thank you for the quick response Curtis, very much appreciated. I have tried the code you suggest in the assembly (with my own simple code added) and it gives me the 'Parameter is incorrect' error when running. Am I doing something obvious wrong? Thank you
Dim oAsmCompDef As AssemblyComponentDefinition
oAsmCompDef = ThisApplication.ActiveDocument.ComponentDefinition
'Define the open documentDim openDoc As Document
openDoc = ThisDoc.Document
Dim docFile As Document
'kAssemblyDocumentObject = 12291
If openDoc.DocumentType = 12291 Then
'Iterate though the part files in the assembly
For Each docFile In openDoc.AllReferencedDocuments
'kPartDocumentObject = 12290
If docFile.DocumentType = 12290 Then
If Colour = "Red" Then
oAsmCompDef.RepresentationsManager.Desi
End If
End If
Next
Else
MessageBox.Show("This file is not an Assembly.", "iLogic")
End If

