Get Title: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Jaredsampson (talk | contribs) (→PYMOL API: change to get_title API (this was apparently copied from the set_title page)) |
||
(3 intermediate revisions by 3 users 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). | ||
==USAGE== | ==USAGE== | ||
<source lang="python"> | <source lang="python"> | ||
get_title object,state | |||
</source> | </source> | ||
==PYMOL API== | ==PYMOL API== | ||
<source lang="python"> | <source lang="python"> | ||
cmd. | cmd.get_title(string object, int state) | ||
</source> | </source> | ||
Line 19: | Line 19: | ||
</source> | </source> | ||
[[Category:Commands| | [[Category:Commands|Get Title]] | ||
[[Category:States]] | [[Category:States|Get Title]] |
Latest revision as of 14:09, 19 January 2023
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
get_title object,state
PYMOL API
cmd.get_title(string object, int state)
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)