Sub test_dwg_2()
Dim oApp As Inventor.Application
Set oApp = ThisApplication
Dim oDoc As Inventor.Document
Set oDoc = ThisApplication.ActiveDocument
Dim Path_Name As String
Path_Name = "C:\Users\Public\Documents\Autodesk\Inventor 2013\Templates\Обычный.idw"
Dim oDoc_dwg As Inventor.DrawingDocument
Set oDoc_dwg = oApp.Documents.Add(kDrawingDocumentObject, Path_Name)
Dim oSheet_1 As sheet
Set oSheet_1 = oDoc_dwg.ActiveSheet
Dim oTG As TransientGeometry
Set oTG = oApp.TransientGeometry
Call oSheet_1.DrawingViews.AddBaseView(oDoc, oTG.CreatePoint2d(10, 10), 0.1, kBottomViewOrientation, kHiddenLineRemovedDrawingViewStyle)
End Sub