Salome HOME
Merge multi-study removal branch.
[modules/geom.git] / doc / salome / gui / GEOM / input / tui_importexport_geom_objs.doc
1 \anchor tui_creation_exportxao
2 <br><h2>Creation of ExportXAO</h2>
3
4 \code
5 import salome
6 import GEOM
7 from salome.geom import geomBuilder
8 geompy = geomBuilder.New()
9
10 gg = salome.ImportComponentGUI("GEOM")
11
12 # create ExportXAO object
13 exportxao = geompy.ExportXAO([value], [value], [value], [value])
14
15 # add object in the study
16 id_exportxao = geompy.addToStudy(exportxao,"ExportXAO")
17
18 # display exportxao
19 gg.createAndDisplayGO(id_exportxao) 
20 \endcode
21