X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FSMESH%2Finput%2Ftui_work_on_objects_from_gui.doc;h=ddd1658a7f54985e28cf3eaca0ef1ed882a8ebc3;hp=569d821a91f89bb732c02ae920f71e071aa4a3ac;hb=c150e1e4c40479c83b47cfb732f240c5df3b5d62;hpb=c98d9fcd7f02c1f1f5c24dd3e709ed75228d66c4 diff --git a/doc/salome/gui/SMESH/input/tui_work_on_objects_from_gui.doc b/doc/salome/gui/SMESH/input/tui_work_on_objects_from_gui.doc index 569d821a9..ddd1658a7 100644 --- a/doc/salome/gui/SMESH/input/tui_work_on_objects_from_gui.doc +++ b/doc/salome/gui/SMESH/input/tui_work_on_objects_from_gui.doc @@ -4,16 +4,23 @@ It is sometimes useful to work alternatively in the GUI of SALOME and in the Python Console. To fetch an object from the TUI simply type: -\code -myMesh_ref = salome.IDToObject("ID") -// were ID is the string looking like "0:1:2:3" that appears in the object browser in the Entry column -// ( If hidden show it by right clicking and checking the checkbox Entry) +\code{.py} +myMesh_ref = salome.IDToObject( ID ) +# were ID is a string looking like "0:1:2:3" that appears in the Object Browser in the Entry column. +# ( If hidden, show it by right clicking and checking the checkbox Entry ) myMesh = smesh.Mesh(myMesh_ref) \endcode or -\code +\code{.py} myMesh_ref = salome.myStudy.FindObjectByPath("/Mesh/myMesh").GetObject() -// "/Mesh/myMesh" is the path to the desired object in the object browser +#'/Mesh/myMesh' is a path to the desired object in the Object Browser +myMesh = smesh.Mesh(myMesh_ref) +\endcode +or +\code{.py} +# get a selected mesh +from salome.gui import helper +myMesh_ref = helper.getSObjectSelected()[0].GetObject() myMesh = smesh.Mesh(myMesh_ref) \endcode