- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
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:
to this:
To recive this I have to change the settings from this:
to this:
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
Solved! Go to Solution.