FreeCAD-Doc/localwiki/FreeCAD_API.html
2018-07-08 12:11:49 -05:00

184 lines
8.8 KiB
HTML

<html><head><title>FreeCAD API</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>FreeCAD API</h1></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>This is the principal (root) module of FreeCAD. It can also be called by "App" from the FreeCAD interpreter. It contains everything that is needed to manipulate documents and their contents (objects).
</p><p>Example:
</p>
<pre>import FreeCAD
print FreeCAD.listDocuments()
mydoc = FreeCAD.activeDocument() </pre>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>ConfigDump</b></big> ( <i> </i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Prints a dictionary containing all the FreeCAD configuration environment.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>ConfigGet</b></big> ( <i>[string]</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Returns the value of the given key. If no key is given, the complete configuration is returned
</p><p><small><b>Returns</b>:</small> A string.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>ConfigSet</b></big> ( <i>string, string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Set the given key (first string) to the given value (second string).
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>Version</b></big> ( <i> </i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Prints the FreeCAD version.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>activeDocument</b></big> ( <i> </i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Return the active document or None if there is no active document.
</p><p><small><b>Returns</b>:</small> A FreeCAD Document.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>addExportType</b></big> ( <i>string, string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Adds a new export file type to FreeCAD. The first string must be formatted like this example: "Word Document (*.doc)". The second string is the name of a python script/module containing an export() function.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>addImportType</b></big> ( <i>string, string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Adds a new import file type to FreeCAD, works the same way as addExportType, the handling python module must contain an open() and/or an import() function.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>closeDocument</b></big> ( <i>Document name</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Closes the given document
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>getDocument</b></big> ( <i>Document name</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Returns a document or raise an exception if there is no document with the given name.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>getExportType</b></big> ( <i>string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Returns the name of the module that can export the specified filetype.
</p><p><small><b>Returns</b>:</small> A string.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>getImportType</b></big> ( <i>string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Returns the name of the module that can import the specified filetype.
</p><p><small><b>Returns</b>:</small> A string.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>listDocuments</b></big> ( <i> </i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Returns a dictionary of names and object pointers of all documents.
</p><p><small><b>Returns</b>:</small> A dictionary of names and object pointers.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>newDocument</b></big> ( <i>[string]</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Creates and returns a new document with a given name. The document name must be unique, which is checked automatically. If no name is supplied, the document will be named "Untitled".
</p><p><small><b>Returns</b>:</small> The newly created document.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>open</b></big> ( <i>string</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> See openDocument
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>openDocument</b></big> ( <i>filepath</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Creates and returns a document and load a project file into the document. The string argument must point to an existing file. If the file doesn't exist or the file cannot be loaded an I/O exception is thrown. In this case the created document is kept, but will be empty.
</p><p><small><b>Returns</b>:</small> The opened FreeCAD Document.
</p>
</div>
</div>
<p><br />
</p>
<div class="api">
<div class="function"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Method.png" class="image"><img alt="Method.png" src="Method.png" width="16" height="16" /></a> <big><b>setActiveDocument</b></big> ( <i>Document name</i> )</div>
<div class="description">
<p><small><b>Description</b>:</small> Set the active document by its name.
</p><p><small><b>Returns</b>:</small>
</p>
</div>
</div>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=FreeCAD_API&amp;oldid=133200">http://www.freecadweb.org/wiki/index.php?title=FreeCAD_API&amp;oldid=133200</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>