How to create 6 views in hyperview

vreddy
vreddy Altair Community Member
edited October 2020 in Community Q&A

I want to create 6 views in hyper view and load models in to each view.

 

 

Thanks 

vreddy

Answers

  • Rahul Rajan_21763
    Rahul Rajan_21763 New Altair Community Member
    edited January 2018

    Right click in results browser to create different views.

    <?xml version="1.0" encoding="UTF-8"?>View.JPG

  • vreddy
    vreddy Altair Community Member
    edited January 2018

    sorry 

    I want to split the page in to 6 windows through customization.

    <?xml version="1.0" encoding="UTF-8"?>image.thumb.png.b72aaf30bb4bf7ef29e86cbc583f2919.png

     

     

    Thanks 

    vreddy

  • Rahul Rajan_21763
    Rahul Rajan_21763 New Altair Community Member
    edited January 2018

    Moving your question to HyperWorks Scripts and customization section.Below post is FYI.

     

  • llyle_20499
    llyle_20499 New Altair Community Member
    edited January 2018

    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.  

     

     

     

  • vreddy
    vreddy Altair Community Member
    edited January 2018

    Thanks livilyle .