This is a read-only mirror of pymolwiki.org
Difference between revisions of "Get Title"
Jump to navigation
Jump to search
m |
m (6 revisions) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | ||
'''get_title''' retrieves a text string to the state of a particular object which will be displayed when the state is active. This is useful for printing the names of objects (given a state). | '''get_title''' retrieves a text string to the state of a particular object which will be displayed when the state is active. This is useful for printing the names of objects (given a state). | ||
Latest revision as of 01:46, 28 March 2014
get_title retrieves a text string to the state of a particular object which will be displayed when the state is active. This is useful for printing the names of objects (given a state).
USAGE
set_title object,state
PYMOL API
cmd.set_title(string object,int state,string text)
Example
Print out all the object names of the ensemble of states loaded in:
for x in range(numStates):
print cmd.get_title("objName", x)