- GuiCommand: Name:Arch IfcSpreadsheet MenuLocation:Arch → Utilities → Create IFC spreadsheet Workbenches:Arch Shortcut:I P SeeAlso:Arch IFC, Arch IfcExplorer
This tool creates a spreadsheet to store IFC properties of an object.
- Select an object.
- Invoke the command using several methods:
See also:
Arch API and FreeCAD Scripting Basics.
This tool can be used in macros and from the Python console by using the following function:
spreadsheet = makeIfcSpreadsheet(archobj=None)
- Creates a
spreadsheet
object. Optionally anarchobj
can be given.
Example:
import FreeCAD, Draft, Arch
Line = Draft.makeWire([FreeCAD.Vector(0, 0, 0), FreeCAD.Vector(2000, 2000, 0)])
Wall = Arch.makeWall(Line, width=150, height=3000)
FreeCAD.ActiveDocument.recompute()
spreadsheet = Arch.makeIfcSpreadsheet(Wall)
documentation index > Arch > Arch IfcSpreadsheet