Std ToggleSelectability: Difference between revisions

From FreeCAD Documentation
No edit summary
mNo edit summary
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Page in progress}}

<translate>
<translate>


<!--T:1-->
{{Docnav
{{Docnav
|[[Std_HideObjects|Std HideObjects]]
|[[Std_HideObjects|HideObjects]]
|[[View_Measure_Toggle_All|View Measure Toggle All]]
|[[View_Measure_Toggle_All|View Measure Toggle All]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_HideObjects.svg
|IconR=
|IconR=View_Measure_Toggle_All.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}


<!--T:2-->
{{GuiCommand
{{GuiCommand
|Name=Std ToggleSelectability
|Name=Std ToggleSelectability
Line 20: Line 19:
}}
}}


==Description==
==Description== <!--T:3-->


<!--T:4-->
The '''Std ToggleSelectability''' command toggles the selectability of objects in 3D views.
The '''Std ToggleSelectability''' command toggles the selectability of objects in [[3D_view|3D views]].


==Usage==
==Usage== <!--T:5-->


<!--T:6-->
# Select one or more objects.
# Select one or more objects.
# There are several ways to invoke the command:
# There are several ways to invoke the command:
#* Select the {{MenuCommand|View → Visibility → [[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the menu.
#* Select the {{MenuCommand|View → Visibility → [[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the menu.
#* Select the {{MenuCommand|[[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the Tree view context menu. This option is not available in the [[PartDesign_Workbench|PartDesign Workbench]].
#* Select the {{MenuCommand|[[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the [[Tree_view|Tree view]] context menu. This option is not available in the [[PartDesign_Workbench|PartDesign Workbench]].
#* Select the {{MenuCommand|[[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the 3D view context menu.
#* Select the {{MenuCommand|[[Image:Std_ToggleSelectability.svg|16px]] Toggle selectability}} option from the 3D view context menu.


==Notes==
==Notes== <!--T:7-->


<!--T:8-->
* The selectability of an object can also be changed through its related {{PropertyData|Selectable}} parameter in the [[Property_editor|Property editor]] or the [[Combo_view|Combo view]].
* The selectability of an object can also be changed through its related {{PropertyData|Selectable}} property in the [[Property_editor|Property editor]] or the [[Combo_view|Combo view]].


==Scripting==
==Scripting== <!--T:9-->


<!--T:10-->
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].


<!--T:11-->
The {{incode|Selectable}} property of an object determines its selectability.
The {{incode|Selectable}} property of an object determines its selectability.


Line 55: Line 59:
<translate>
<translate>



<!--T:12-->
{{Docnav
{{Docnav
|[[Std_HideObjects|Std HideObjects]]
|[[Std_HideObjects|HideObjects]]
|[[View_Measure_Toggle_All|View Measure Toggle All]]
|[[View_Measure_Toggle_All|View Measure Toggle All]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=
|IconL=Std_HideObjects.svg
|IconR=
|IconR=View_Measure_Toggle_All.svg
|IconC=Freecad.svg
|IconC=Freecad.svg
}}
}}
Line 68: Line 74:
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}
{{clear}}

[[Category:Sandbox]]

Latest revision as of 14:56, 6 January 2021

Std ToggleSelectability

Menu location
View → Visibility → Toggle selectability
Workbenches
All
Default shortcut
None
Introduced in version
-
See also
None

Description

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

Usage

  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.

Notes

  • The selectability of an object can also be changed through its related DataSelectable property in the Property editor or the Combo view.

Scripting

See also: FreeCAD Scripting Basics.

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