This is a read-only mirror of pymolwiki.org

Difference between revisions of "Unset"

From PyMOL Wiki
Jump to navigation Jump to search
 
m (1 revision)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
−
===DESCRIPTION===
+
 
 +
'''unset''' behaves in two ways.
 
   
 
   
−
  "unset" behaves in two ways.
+
If selection is not provided:
 +
 
 +
* Since PyMOL 2.5: Changes the named global setting to the default value.
 +
* Before PyMOL 2.5: Changes the named global setting to a zero or off value.
 
   
 
   
−
  If selection is not provided, unset changes the named global
+
If a selection is provided, then "unset" undefines object-specific or state-specific settings so that the global setting will be in effect.
−
  setting to a zero or off value.
+
 
−
+
== Usage ==
−
  If a selection is provided, then "unset" undefines  
+
 
−
  object-specific or state-specific settings so that the global
+
  unset name [,selection [,state ]]
−
  setting will be in effect.
+
 
−
+
== Python API ==
−
===USAGE===
+
 
−
   
+
<source lang="python">
−
  unset name [,selection [,state ]]
+
cmd.unset ( string name, string selection = '',
−
+
        int state=0, int updates=1, int log=0 )  
−
===PYMOL API===
+
</source>
−
<source lang="python">
+
 
−
  cmd.unset ( string name, string selection = '',
+
== See Also ==
−
            int state=0, int updates=1, int log=0 )  
+
 
−
</source>
+
* [[unset_deep]]
 +
* [[set]]
  
−
[[Category:Commands|unset]]
+
[[Category:Commands|Unset]]
 +
[[Category:States]]

Latest revision as of 03:05, 1 March 2021

unset behaves in two ways.

If selection is not provided:

  • Since PyMOL 2.5: Changes the named global setting to the default value.
  • Before PyMOL 2.5: Changes the named global setting to a zero or off value.

If a selection is provided, then "unset" undefines object-specific or state-specific settings so that the global setting will be in effect.

Usage

unset name [,selection [,state ]]

Python API

cmd.unset ( string name, string selection = '',
         int state=0, int updates=1, int log=0 )

See Also