Arch IfcSpreadsheet/it: Difference between revisions

From FreeCAD Documentation
No edit summary
(Created page with "== Descrizione == Questo strumento crea un foglio di calcolo per memorizzare le proprietà IFC di un oggetto.")
Line 4: Line 4:
{{GuiCommand/it|Name=Arch_MakeIfcSpreadsheet|Name/it=Crea un foglio di calcolo Ifc|Workbenches=[[Arch Module/it|Arch]]|MenuLocation=Arch → Utilità → Crea un foglio di calcolo Ifc...|SeeAlso=[[Arch IFC/it|File IFC]], [[Arch IfcExplorer/it|Espola Ifc]]|Icon=Arch_Schedule.svg}}
{{GuiCommand/it|Name=Arch_MakeIfcSpreadsheet|Name/it=Crea un foglio di calcolo Ifc|Workbenches=[[Arch Module/it|Arch]]|MenuLocation=Arch → Utilità → Crea un foglio di calcolo Ifc...|SeeAlso=[[Arch IFC/it|File IFC]], [[Arch IfcExplorer/it|Espola Ifc]]|Icon=Arch_Schedule.svg}}


== Description ==
== Descrizione ==
Questo strumento crea un foglio di calcolo per memorizzare le proprietà IFC di un oggetto.
This tool creates a spreadsheet to store IFC properties of an object.


== How to use ==
== How to use ==

Revision as of 08:10, 6 April 2019

Crea un foglio di calcolo Ifc

Posizione nel menu
Arch → Utilità → Crea un foglio di calcolo Ifc...
Ambiente
Arch
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
File IFC, Espola Ifc

Descrizione

Questo strumento crea un foglio di calcolo per memorizzare le proprietà IFC di un oggetto.

How to use

  1. Select an object.
  2. Go to Arch → Utilities → Create IFC spreadsheet.

Scripting

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 an archobj 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)