Display option referenced parts

Display option referenced parts

MairA_DUKA
Enthusiast Enthusiast
626 Views
4 Replies
Message 1 of 5

Display option referenced parts

MairA_DUKA
Enthusiast
Enthusiast

Good evening

 

I have a View from an Assembly. The Assembly has referenced parts.

The referenced parts are showing through other components in drawing views.

 

I want create an iLogic-Rule to change the view from this:

image.png

 

to this:

image.png

 

To recive this I have to change the settings from this:

image.png

 

to this:

image.png


This is my iLogic Rule, but I can't finde the right option/parameter to change the setting from the image above.

 

 

Try
Dim oDoc As Document
oDoc = ThisDoc.Document

If (oDoc.DocumentType = Inventor.DocumentTypeEnum.kDrawingDocumentObject) Then
Dim oView As DrawingView = Nothing
Dim oDrawingViews As DrawingViews
Dim NewArrayList As New ArrayList

oDrawingViews = ThisApplication.ActiveDocument.ActiveSheet.DrawingViews

For i = 1 To oDrawingViews.Count
oView = oDrawingViews.Item(i)
'...
Next
End If
Catch ex As Exception
MessageBox.Show(ex.Message, "Error iLogic-Rule View REF")
End Try

0 Likes
Accepted solutions (1)
627 Views
4 Replies
Replies (4)
Message 2 of 5

WCrihfield
Mentor
Mentor
Accepted solution

That's a tough one.  I don't see any option in for a DrawingView that gives you access to those settings.

You can review the current help file for the DrawingView Object at the link below.

http://help.autodesk.com/view/INVNTOR/2020/ENU/?guid=GUID-D273D9C3-C24F-4CDD-B571-F2C0B5F7A5B3 

 

Wesley Crihfield

EESignature

(Not an Autodesk Employee)

0 Likes
Message 3 of 5

chandra.shekar.g
Autodesk Support
Autodesk Support

@MairA_DUKA,

 

Please log this wish list at idea station using below link.

 

https://forums.autodesk.com/t5/inventor-ideas/idb-p/v1232

 

Thanks and regards,


CHANDRA SHEKAR G
Developer Advocate
Autodesk Developer Network



0 Likes
Message 4 of 5

WCrihfield
Mentor
Mentor

I created it here...

https://forums.autodesk.com/t5/inventor-ideas/drawing-view-model-state-hidden-line-calc-amp-line-sty... 

Thanks for the tip.

Wesley Crihfield

EESignature

(Not an Autodesk Employee)

Message 5 of 5

chandra.shekar.g
Autodesk Support
Autodesk Support

@WCrihfield,

 

Thanks for creating wish list at idea station,

 

Engineering team may be considered based on vote for this wish list.

 

Thanks and regards,


CHANDRA SHEKAR G
Developer Advocate
Autodesk Developer Network



0 Likes