Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
529 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)

 

BrandonBG
in reply to: Anonymous

Try

 

oView10 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1, ViewOrientationTypeEnum.kFrontViewOrientation, DrawingViewStyleEnum.kHiddenLineDrawingViewStyle)

Brandon

Anonymous
in reply to: BrandonBG

Thank you