Std Copy/ru: Difference between revisions

From FreeCAD Documentation
No edit summary
Line 2: Line 2:


{{Docnav/ru
{{Docnav/ru
|[[Std_Cut/ru|Команда "Правка → Вырезать"]]
|[[Std_Cut/ru|Команда "Вырезать"]]
|[[Std_Paste/ru|Команда "Правка → Вставить"]]
|[[Std_Paste/ru|Команда "Вставить"]]
|[[Std_Edit_Menu/ru|Меню "Правка"]]
|[[Std_Edit_Menu/ru|Меню "Правка"]]
|IconL=Std_Cut.svg
|IconL=Std_Cut.svg

Revision as of 12:48, 3 August 2021

Std Copy

Системное название
Std Copy
Расположение в меню
Правка → Копировать
Верстаки
Все
Быстрые клавиши
Ctrl+C
Представлено в версии
-
См. также
Вырезать, Вставить, Дублировать выбранное

Описание

The Std Copy command copies objects to the Clipboard.

Применение

  1. Select one or more objects.
  2. There are several ways to invoke the command:
    • Press the Std Copy button.
    • Select the Edit → Copy option from the menu.
    • Select the Copy option from the Tree view context menu.
    • Use the keyboard shortcut: Ctrl+C.
  3. If the objects have dependencies that have not been selected, a dialog box will prompt you to specify which should be included.

Примечания

  • When you are working in a FreeCAD text window, an input box or a spreadsheet, the standard keyboard shortcut Ctrl+C, in almost all cases, does not call the Std Copy command but uses the Copy function from the OS instead.
  • It is not possible to copy-paste native objects between FreeCAD and other applications.

Scripting

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

FreeCADGui.runCommand('Std_Copy')
FreeCADGui.runCommand('Std_Paste')

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