Difference between revisions of "Full Screen"

From PyMOLWiki
Jump to navigation Jump to search
m (Added Python command)
Line 4: Line 4:
 
===USAGE===
 
===USAGE===
 
  full_screen on
 
  full_screen on
  full_screen off  
+
  full_screen off
 +
 
 +
<source lang="python">
 +
cmd.full_screen('on')
 +
cmd.full_screen('off')
 +
</source>
  
 
[[Category:Commands|full_screen]]
 
[[Category:Commands|full_screen]]

Revision as of 12:42, 28 August 2006

DESCRIPTION

full_screen enables or disables PyMOL's full screen mode. This does not work well on all platforms.

USAGE

full_screen on
full_screen off
cmd.full_screen('on')
cmd.full_screen('off')