Article | 41024098 |
Type | Bug |
Product | vdDXF |
Version | 5.1.1.1038 |
Date Added | 9/20/2005 |
Fixed | Yes [9/21/2005] |
Submitted by | Reinhold Mathuni |
Keywords |
VDPro1.ActiveDocument.New VDPro1.Actions.DisableVdrawDxf = False Dim a VDPro1.CommandAction.CmdLine Array(Array(1.1, 1.1), Array(2.2, 2.2)) VDPro1.ActiveDocument.Limits = Array(0, 11, 22, 33) a = VDPro1.ActiveDocument.Limits MsgBox "limits before save " + CStr(a(0)) + " , " + CStr(a(1)) + " , " + CStr(a(2)) + " , " + CStr(a(3)) VDPro1.ActiveDocument.SaveAs App.Path + "\vd.dxf", VdCadVer2000 MsgBox "saved ok" VDPro1.ActiveDocument.New VDPro1.Actions.DisableVdrawDxf = False MsgBox "new ok" VDPro1.ActiveDocument.Open App.Path + "\vd.dxf" a = VDPro1.ActiveDocument.Limits MsgBox "limits after open " + CStr(a(0)) + " , " + CStr(a(1)) + " , " + CStr(a(2)) + " , " + CStr(a(3))