Arch IfcSpreadsheet/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "Cet outil crée une feuille de calcul pour stocker les propriétés IFC d'un objet.")
(Created page with "==Comment l'utiliser==")
Line 16: Line 16:
Cet outil crée une feuille de calcul pour stocker les propriétés IFC d'un objet.
Cet outil crée une feuille de calcul pour stocker les propriétés IFC d'un objet.


== How to use ==
==Comment l'utiliser==


# Select an object.
# Select an object.

Revision as of 16:08, 1 May 2019

Créer une feuille de calcul Ifc

Emplacement du menu
Arch → Utilitaires → Créer une feuille de calcul Ifc
Ateliers
Atelier architecture
Raccourci par défaut
I P
Introduit dans la version
-
Voir aussi
IFC, Explorateur Ifc

Description

Cet outil crée une feuille de calcul pour stocker les propriétés IFC d'un objet.

Comment l'utiliser

  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)