Arch IfcSpreadsheet/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "To narzędzie tworzy arkusz kalkulacyjny do przechowywania właściwości IFC obiektu.")
(Created page with "==Użycie==")
 
Line 22: Line 22:
To narzędzie tworzy arkusz kalkulacyjny do przechowywania właściwości [[Arch_IFC/pl|IFC]] obiektu.
To narzędzie tworzy arkusz kalkulacyjny do przechowywania właściwości [[Arch_IFC/pl|IFC]] obiektu.


==Usage==
==Użycie==


# Select an object.
# Select an object.

Latest revision as of 05:55, 29 March 2022

Arch IfcSpreadsheet

Menu location
Arch → Utilities → Create IFC spreadsheet
Workbenches
Arch
Default shortcut
I P
Introduced in version
-
See also
Arch IFC, Arch IfcExplorer

Opis

To narzędzie tworzy arkusz kalkulacyjny do przechowywania właściwości IFC obiektu.

Użycie

  1. Select an object.
  2. Invoke the command using several methods:
    • Pressing the Create IFC spreadsheet button on the toolbar.
    • Using the I then P keyboard shortcut.
    • Using the Arch → Utilities → Create IFC spreadsheet entry from the top menu.

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)