Difference between revisions of "Enable"

From PyMOLWiki
Jump to navigation Jump to search
 
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
===DESCRIPTION===
+
The '''enable''' command toggles on the display of all currently visible representations of an objectIt is the equivalent of selecting the object in the list at the top of the [[Internal_gui|Internal GUI]].
    "enable" enable display of an object and all currently visible representations.
 
   
 
 
===USAGE===
 
===USAGE===
  enable name
+
enable [name [, parents]]
  enable all
+
 
+
; name
  name = object or selection name
+
: the name of an object or a named selection (default="all")
+
 
 +
; parents
 +
: when set to 1, enables the named object and all parent objects of the named object (recursively), so it won't be hidden by having a parent object (or [[group]]) that is [[disable|disabled]] (default=0)
 +
 
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
  cmd.enable( string object-name )
+
cmd.enable( string name='all', int parents=0 )
</source>  
+
</source>  
 +
 
 +
===EXAMPLES===
 +
enable my_object
 +
enable (my_object1 or my_object2)
 +
enable my_object*
 +
enable
 +
enable my_object, parents=1
  
===EXAMPLE===
 
  enable my_object
 
 
 
===SEE ALSO===
 
===SEE ALSO===
+
[[Show]], [[Hide]], [[Disable]], [[Suspend_updates]]
  [[Cmd show]], [[Cmd hide]], [[Cmd disable]]
 
  
[[Category:Commands|enable]]
+
[[Category:Commands|Enable]]
 +
[[Category:View Module|Enable]]

Latest revision as of 17:11, 20 May 2014

The enable command toggles on the display of all currently visible representations of an object. It is the equivalent of selecting the object in the list at the top of the Internal GUI.

USAGE

enable [name [, parents]]
name
the name of an object or a named selection (default="all")
parents
when set to 1, enables the named object and all parent objects of the named object (recursively), so it won't be hidden by having a parent object (or group) that is disabled (default=0)

PYMOL API

cmd.enable( string name='all', int parents=0 )

EXAMPLES

enable my_object
enable (my_object1 or my_object2)
enable my_object*
enable
enable my_object, parents=1

SEE ALSO

Show, Hide, Disable, Suspend_updates