Arch IfcSpreadsheet/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/pl |Trzy widoki |Przełącz widoczność odjęcia |środowisko pracy Architektura |IconL=Arch_3Views.svg |IconR=Arch_ToggleSubs.svg |IconC=Workbench_Arch.svg }}")
(Created page with "{{GuiCommand/pl |Name=Arch IfcSpreadsheet |Name/pl=Architektura: Arkusz kalkulacyjny IFC |MenuLocation=Architektura → Narzędzia → Arkusz kalkulacyjny IFC |Workbenches=Architektura |Shortcut={{KEY|I}} {{KEY|P}} |SeeAlso=IFC, Przeglądarka IFC }}")
Line 10: Line 10:
}}
}}


{{GuiCommand
{{GuiCommand/pl
|Name=Arch IfcSpreadsheet
|Name=Arch IfcSpreadsheet
|Name/pl=Architektura: Arkusz kalkulacyjny IFC
|MenuLocation=Arch → Utilities → Create IFC spreadsheet
|MenuLocation=Architektura → Narzędzia → Arkusz kalkulacyjny IFC
|Workbenches=[[Arch_Workbench|Arch]]
|Workbenches=[[Arch_Workbench/pl|Architektura]]
|Shortcut={{KEY|I}} {{KEY|P}}
|Shortcut={{KEY|I}} {{KEY|P}}
|SeeAlso=[[Arch_IFC|Arch IFC]], [[Arch_IfcExplorer|Arch IfcExplorer]]
|SeeAlso=[[Arch_IFC/pl|IFC]], [[Arch_IfcExplorer/pl|Przeglądarka IFC]]
}}
}}



Revision as of 18:46, 6 May 2024

Architektura: Arkusz kalkulacyjny IFC

Lokalizacja w menu
Architektura → Narzędzia → Arkusz kalkulacyjny IFC
Środowisko pracy
Architektura
Domyślny skrót
I P
Wprowadzono w wersji
-
Zobacz także
IFC, Przeglądarka IFC

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)