Std DuplicateSelection/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 39: Line 39:


* Duplicate labels are allowed if {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → Document → DuplicateLabels}} is set to {{TRUE}}. This setting can also be changed in the [[Preferences_Editor#Document|Preferences Editor]].
* Duplicate labels are allowed if {{MenuCommand|Tools → Edit parameters... → BaseApp → Preferences → Document → DuplicateLabels}} is set to {{TRUE}}. This setting can also be changed in the [[Preferences_Editor#Document|Preferences Editor]].

==Scripting==

The '''Std DuplicateSelection''' command can be applied after selecting one or more objects in the [[Tree view]]:

{{Code|code=
FreeCADGui.runCommand('Std_DuplicateSelection')
}}

The selection could be manual (by using the mouse), or via the [[Python_Console|Python Console]].<br>
To know more about selecting objects programmatically, refer to [[Selection_methods|Selection methods]].



{{Docnav
{{Docnav

Revision as of 13:52, 10 March 2021

Std Auswahl duplizieren

Menüeintrag
Bearbeiten → Auswahl duplizieren
Arbeitsbereich
Alle
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
Kopieren, Einfügen

Description

Beschreibung

Der Auswahl duplizieren-Befehl ist eine 'Verkürzung' von Kopieren + Einfügen (Copy + Paste). Er erstellt Kopien der aktuell ausgewählten Objekte in das aktuelle Dokument.

Usage

Anwendung

  1. Wähle die zu duplizierenden Objekte.
  2. Benutze aus der Menüleiste BearbeitenAuswahl duplizieren.

Notes

Mehr

Mehr Einzelheiten zum Replizieren von Objekten gibt es auf der Objekte kopieren-Seite.

Preferences

  • Duplicate labels are allowed if Tools → Edit parameters... → BaseApp → Preferences → Document → DuplicateLabels is set to true. This setting can also be changed in the Preferences Editor.

Scripting

The Std DuplicateSelection command can be applied after selecting one or more objects in the Tree view:

FreeCADGui.runCommand('Std_DuplicateSelection')

The selection could be manual (by using the mouse), or via the Python Console.
To know more about selecting objects programmatically, refer to Selection methods.