question

Enrique Elizaga avatar image
0 Likes"
Enrique Elizaga asked MarcPost commented

Is there a code to hide/show all object's connections?

Hi, what is the code to change the "view settings>hide/show connections". I tried to do it using the eyedrop tool but couldn't.

Also, is what is the way to show/hide path network through code? (instead of using "x" key)

Thank you for your valuable help!

FlexSim 17.2.2
codeconnectionspath network
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Arun Kr avatar image
0 Likes"
Arun Kr answered MarcPost commented

Hi @Enrique Elizaga,

To hide connectors of fixed and mobile resources

  1. int display = 1;//1- Hide // 0 - Show
  2. for(int k=1;k<=model().subnodes.length;k++)
  3. {
  4. treenode ChildNodes = model().subnodes[k];
  5. if(isclasstype(ChildNodes,CLASSTYPE_FIXEDRESOURCE)||isclasstype(ChildNodes,CLASSTYPE_TASKEXECUTER))
  6. {
  7. switch_hideconnectors(ChildNodes,display);
  8. }
  9. }

To hide network node paths and shape

  1. int display = 1;//1- Hide // 0 - Show
  2. for(int k=1;k<=model().subnodes.length;k++)
  3. {
  4. treenode ChildNodes = model().subnodes[k];
  5. if(isclasstype(ChildNodes,CLASSTYPE_NETWORKNODE))
  6. {
  7. switch_hideshape(ChildNodes,display);
  8. }
  9. }

Regards,

Arun KR

· 3
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

jing.c avatar image
0 Likes"
jing.c answered Enrique Elizaga commented

Hi, @Enrique Elizaga

Try this code:

  1. treenode activedoc = activedocumentnode();
  2. setnodenum(viewhideallconnectors(activedoc),1);

When you keep the model view(3d) active, it will works~

May it helps~

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.