X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FGEOM%2Finput%2Fimport_export.doc;h=57c96e57dbe86cc64aa4ddc28010c84058c30380;hb=1e6d06f174b0a164e7345301fb913ec474a29a72;hp=7e79e38d69ee89770d48730a2517cf40237cee3a;hpb=d617faae6bc5aeb91b63796618a20c7c13037b6c;p=modules%2Fgeom.git diff --git a/doc/salome/gui/GEOM/input/import_export.doc b/doc/salome/gui/GEOM/input/import_export.doc index 7e79e38d6..57c96e57d 100644 --- a/doc/salome/gui/GEOM/input/import_export.doc +++ b/doc/salome/gui/GEOM/input/import_export.doc @@ -88,6 +88,16 @@ In the \b File menu select Import/XAO. \par +It is possible to import a shape from XAO file using the TUI Command: + +ok, Shape, Sub_Shapes, Groups, Fields = geompy.ImportXAO(FileName) + +It is also possible to import a shape from XAO format memory buffer (bytes array) using the TUI Command: + +ok, Shape, Sub_Shapes, Groups, Fields = geompy.ImportXAOMem(aBuffer) + +\par + To export a shape in the \b XAO format: \par @@ -104,6 +114,12 @@ In this dialog: - Select the \b Fields of the chosen shape to be exported. - Press "Apply" or "Apply & Close" button to get the result. -It is also possible to export a shape using the TUI Command: geompy.ExportXAO(Shape, Groups, Fields, Author, FileName, ShapeFileName) +It is possible to export a shape in XAO file using the TUI Command: + +geompy.ExportXAO(Shape, Groups, Fields, Author, FileName, ShapeFileName) + +It is also possible to export a shape in XAO format memory buffer (bytes array) using the TUI Command: + +aBuffer = geompy.ExportXAOMem(Shape, Groups, Fields, Author) */