Arch IfcSpreadsheet/pt-br: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilização==")
(Updating to match new version of source page)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

<div class="mw-translate-fuzzy">
{{Docnav
{{Docnav
|[[Arch_3Views/pt-br|3 vistas da malha]]
|[[Arch_3Views/pt-br|3 vistas da malha]]
|[[Arch_ToggleSubs/pt-br|Alternar Subcomponentes]]
|[[Arch_ToggleSubs/pt-br|Alternar Subcomponentes]]
|[[Arch_Module/pt-br|Arch]]
|[[Arch_Workbench/pt-br|Arch]]
|IconL=Arch_3Views.svg
|IconL=Arch_3Views.svg
|IconR=Arch_ToggleSubs.svg
|IconR=Arch_ToggleSubs.svg
|IconC=Workbench_Arch.svg
|IconC=Workbench_Arch.svg
}}
}}
</div>


{{GuiCommand
{{GuiCommand
|Name=Arch IfcSpreadsheet
|Name=Arch IfcSpreadsheet
|MenuLocation=Arch → Utilities → Create IFC spreadsheet
|MenuLocation=Arch → Utilities → Create IFC spreadsheet
|Workbenches=[[Arch_Module|Arch]]
|Workbenches=[[Arch_Workbench|Arch]]
|Shortcut={{KEY|I}} {{KEY|P}}
|Shortcut={{KEY|I}} {{KEY|P}}
|SeeAlso=[[Arch_IFC|Arch IFC]], [[Arch_IfcExplorer|Arch IfcExplorer]]
|SeeAlso=[[Arch_IFC|Arch IFC]], [[Arch_IfcExplorer|Arch IfcExplorer]]
Line 30: Line 33:


== Scripting ==
== Scripting ==
{{Emphasis|See also:}} [[Arch API]] and [[FreeCAD Scripting Basics]].


{{Emphasis|See also:}} [[Arch_API|Arch API]] and [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
This tool can be used in [[macros]] and from the [[Python]] console by using the following function:

This tool can be used in [[Macros|macros]] and from the [[Python|Python]] console by using the following function:
{{Code|code=
{{Code|code=
spreadsheet = makeIfcSpreadsheet(archobj=None)
spreadsheet = makeIfcSpreadsheet(archobj=None)
Line 49: Line 53:
spreadsheet = Arch.makeIfcSpreadsheet(Wall)
spreadsheet = Arch.makeIfcSpreadsheet(Wall)
}}
}}


<div class="mw-translate-fuzzy">
{{Docnav
{{Docnav
|[[Arch_3Views|3 Views from mesh]]
|[[Arch_3Views/pt-br|3 vistas da malha]]
|[[Arch_ToggleSubs|Toggle Subcomponents]]
|[[Arch_ToggleSubs/pt-br|Alternar Subcomponentes]]
|[[Arch_Module|Arch]]
|[[Arch_Workbench/pt-br|Arch]]
|IconL=Arch_3Views.svg
|IconL=Arch_3Views.svg
|IconR=Arch_ToggleSubs.svg
|IconR=Arch_ToggleSubs.svg
|IconC=Workbench_Arch.svg
|IconC=Workbench_Arch.svg
}}
}}
</div>


{{Arch Tools navi{{#translation:}}}}
{{Arch Tools navi{{#translation:}}}}

{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Latest revision as of 18:12, 10 March 2022

Other languages:

Arch IfcSpreadsheet

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

Descrição

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

Utilização

  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)