How to create 6 views in hyperview
vreddy
Altair Community Member
I want to create 6 views in hyper view and load models in to each view.
Thanks
vreddy
0
Answers
-
-
-
Moving your question to HyperWorks Scripts and customization section.Below post is FYI.
0 -
Hello vreddy,
You can split the pages using handles as below, Make sure you have set the right page number and layout number.
hwi OpenStack;
hwi GetSessionHandle my_session;
my_session GetProjectHandle my_project;
my_project GetPageHandle my_page 1;
my_page SetLayout 11;
hwi CloseStack;
After doing so you will have to load the model in appropriate window by selecting the right handles.
0 -
Thanks livilyle .
0