Salome HOME
5a02d6460c177d749d516886a8d566b7e43afb1c
[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 geompy
6 import salome
7 gg = salome.ImportComponentGUI("GEOM")
8
9 # create ExportXAO object
10 exportxao = geompy.MakeExportXAO([value], [value], [value], [value])
11
12 # add object in the study
13 id_exportxao = geompy.addToStudy(exportxao,"ExportXAO")
14
15 # display exportxao
16 gg.createAndDisplayGO(id_exportxao) 
17 \endcode
18