Difference between revisions of "Get type"

From PyMOLWiki
Jump to navigation Jump to search
(Created page with "= Overview = PyMOL objects have a base type. get_type will retrieve that base type name. = Usage = <source lang="python"> # create a selection cmd.select("foo", "all") # p...")
 
(No difference)

Latest revision as of 18:26, 1 December 2011

Overview

PyMOL objects have a base type. get_type will retrieve that base type name.

Usage

# create a selection

cmd.select("foo", "all")

# print the type

print cmd.get_type("foo")

See Also

get_names