Std ToggleSelectability/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>


<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[Std_HideObjects/ru|Std HideObjects]]
|[[Std_HideObjects/ru|Std HideObjects]]
Line 9: Line 10:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{GuiCommand/ru
{{GuiCommand/ru
Line 50: Line 52:
}}
}}


<div class="mw-translate-fuzzy">
{{Docnav/ru
{{Docnav/ru
|[[Std_HideObjects/ru|Std HideObjects]]
|[[Std_HideObjects/ru|Std HideObjects]]
Line 58: Line 61:
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
</div>


{{Std Base navi{{#translation:}}}}
{{Std Base navi{{#translation:}}}}

Revision as of 18:48, 30 December 2020

Other languages:

Std ToggleSelectability

Системное название
Std ToggleSelectability
Расположение в меню
Вид → Видимость → Откл/вкл выделяемость
Верстаки
All
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Нет

Описание

The Std ToggleSelectability command toggles the selectability of objects in 3D views.

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

  1. Select one or more objects.
  2. There are several ways to invoke the command:
    • Select the View → Visibility → Toggle selectability option from the menu.
    • Select the Toggle selectability option from the Tree view context menu. This option is not available in the PartDesign Workbench.
    • Select the Toggle selectability option from the 3D view context menu.

Примечания

  • The selectability of an object can also be changed through its related ДанныеSelectable property in the Property editor or the Combo view.

Scripting

Смотри так же: Основы скриптов в FreeCAD.

The Selectable property of an object determines its selectability.

import FreeCADGui

obj = FreeCADGui.ActiveDocument.myObjectName

if obj.Selectable == True:
  obj.Selectable = False
else:
  obj.Selectable = True