Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
' Create a view called "Isometrical View" in the sheet
Dim oIsoView As DrawingView
Set oIsoView = oSheet.Views.Add("Isometrical View")
' Retrieve it generative behavior
Dim oIsoViewGB As DrawingViewGenerativeBehavior
Set oIsoViewGB = oIsoView.GenerativeBehavior
' Declare the part to draw in this iso view
oIsoViewGB.Document = oPartToDraw
' Define this view as a iso view, with the XY plane (in oPartToDraw) as projection plane
oIsoViewGB.DefineIsometricView 0.925456, -0.042455, 0.376469, 0.109966, 0.981023, -0.159692
' Position the View in the Sheet
oIsoView.x = 300
oIsoView.y = 400
' Update the view
oIsoViewGB.Update
fedro said:Define this view as a iso view, with the XY plane (in oPartToDraw) as projection plane