TechDraw ShareView/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it |Name=TechDraw ShareView |Name/it=TechDraw Condividi Vista |MenuLocation=TechDraw → Viste TechDraw → Condividi Vista |Workbenches=TechDraw |Version=0.20 |SeeAlso= }}")
(Created page with "==Descrizione==")
Line 19: Line 19:
}}
}}


==Description==
<span id="Description"></span>
==Descrizione==


The '''TechDraw ShareView''' tool makes a View and all its dependents (Balloons, Dimensions, etc) visible on a second Page.
The '''TechDraw ShareView''' tool makes a View and all its dependents (Balloons, Dimensions, etc) visible on a second Page.

Revision as of 20:30, 20 April 2024

Other languages:

TechDraw Condividi Vista

Posizione nel menu
TechDraw → Viste TechDraw → Condividi Vista
Ambiente
TechDraw
Avvio veloce
Nessuno
Introdotto nella versione
0.20
Vedere anche
Nessuno

Descrizione

The TechDraw ShareView tool makes a View and all its dependents (Balloons, Dimensions, etc) visible on a second Page.

Usage

  1. Optionally select a View, a from Page and a to Page. The pages must be selected in that order.
  2. There are several ways to invoke the tool:
    • Press the Share View button.
    • Select the TechDraw → TechDraw Views → Share View option from the menu.
  3. A dialog will open to allow you to select a View, from Page and to Page.
  4. Press the OK button.

Notes

There is only one View object after the share operation. Any changes made to the View will be reflected in both Pages. If the View is deleted from one Page it will also be deleted from the other.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

The ShareView tool can be used in macros and from the Python console by using the following functions:

import TechDrawTools
#MoveView with a True parameter in the last position performs a copy
TechDrawTools.MoveView(viewName, fromPageName, toPageName, True)