zac 发表于 2010-6-10 06:19:00

改变当前视图?

有谁知道 vb.net 命令,怎么改变计划视图为轴侧图?
在此谢过!
扎克

ahlzl 发表于 2010-6-10 08:15:00

Dim ed As Editor = Application.DocumentManager.MdiActiveDocument.Editor
Dim vtr As ViewTableRecord = ed.GetCurrentView()
Dim newVtr As ViewTableRecord = vtr
newVtr.ViewDirection = New Vector3d(1, -1, 1)
ed.SetCurrentView(newVtr)

zac 发表于 2010-6-10 09:12:00

谢谢。
工作就像一个魅力!

zac 发表于 2010-6-13 10:53:00

我怎么做
变焦所有
in autocad 2008?
感谢您的帮助!
页: [1]
查看完整版本: 改变当前视图?