Arch IfcSpreadsheet/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 7: Line 7:
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
{{GuiCommand/ru
{{GuiCommand/ru
|Name=Arch MakeIfcSpreadsheet
|Name=Arch IfcSpreadsheet
|Name/ru=Arch MakeIfcSpreadsheet
|Name/ru=Arch IfcSpreadsheet
|MenuLocation=Arch → Utilities → Создать IFC таблицу
|MenuLocation=Arch → Utilities → Создать IFC таблицу
|Workbenches=[[Arch_Workbench/ru|Arch]]
|Workbenches=[[Arch_Workbench/ru|Arch]]

Revision as of 08:59, 5 November 2021

Arch IfcSpreadsheet

Системное название
Arch IfcSpreadsheet
Расположение в меню
Arch → Utilities → Создать IFC таблицу
Верстаки
Arch
Быстрые клавиши
I P
Представлено в версии
-
См. также
Arch IFC, Arch IfcExplorer

Описание

This tool creates a spreadsheet to store IFC properties of an object.

Использование

  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)