Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
528 Views, 2 Replies

. (Exception from HRESULT: 0x80070057 (E_INVALIDARG)) When adding new base view

 

Dim oDrawingDoc As DrawingDocument
 oDrawingDoc = ThisApplication.ActiveDocument 
     
Dim oSheet As Sheet
     oSheet = oDrawingDoc.Sheets.Item(1)
       
Dim oPoint1 As Point2d
     oPoint1 = ThisApplication.TransientGeometry.CreatePoint2d(5, 5)


Dim oPartDoc As Document
     oPartDoc = ThisApplication.Documents.Open("D:\Vault\Designs\testpart Flat.ipt", False)

Dim oView10 As DrawingView
                                                                 
    oView10 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1, kFrontViewOrientation, kHiddenLineDrawingViewStyle)


Call oPartDoc.Close(True)