jmarkus
Mechanical
- Jul 11, 2001
- 377
I would like my journal to step through the following canned views: iso,top,front,right
using
where Vw is the NXOpen.View.Canned name, but because this isn't just a string or integer (at least from what I understand) I can't figure out how to do it.
I thought I could define an array with the integer value of the views as {0,1,2,6} and then step through with
But because I don't have the variable type correct, it doesn't work.
Can someone enlighten me?
Thanks,
Jeff
using
Code:
workpart.ModelingViews.WorkView.orient(Vw,0)
where Vw is the NXOpen.View.Canned name, but because this isn't just a string or integer (at least from what I understand) I can't figure out how to do it.
I thought I could define an array with the integer value of the views as {0,1,2,6} and then step through with
Code:
For each Vw in whateverarray
workpart.ModelingViews.WorkView.orient(Vw,0)
But because I don't have the variable type correct, it doesn't work.
Can someone enlighten me?
Thanks,
Jeff