Difference between revisions of "Disable"

From PyMOLWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
===DESCRIPTION===
 
===DESCRIPTION===
  "disable" disables display of an object and all currently visible
+
'''disable''' disables display of an object and all currently visible representations.
  representations.
+
 
 
 
===USAGE===
 
===USAGE===
  disable name
+
disable name
  disable all  
+
disable all  
+
 
  "name" is the name of an object or a named selection
+
'''name''' is the name of an object or a named selection
+
 
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
  cmd.disable( string name )  
+
cmd.disable( string name )  
</source>
+
</source>
  
 
===EXAMPLE===
 
===EXAMPLE===
    disable my_object
+
disable my_object
+
 
 
===SEE ALSO===
 
===SEE ALSO===
+
[[Cmd show]], [[Cmd hide]], [[Cmd enable]]
  [[Cmd show]], [[Cmd hide]], [[Cmd enable]]
 
  
 
[[Category:Commands|disable]]
 
[[Category:Commands|disable]]

Revision as of 20:35, 13 June 2005

DESCRIPTION

disable disables display of an object and all currently visible representations.

USAGE

disable name
disable all 

name is the name of an object or a named selection

PYMOL API

cmd.disable( string name )

EXAMPLE

disable my_object

SEE ALSO

Cmd show, Cmd hide, Cmd enable