Get Title

From PyMOLWiki
Revision as of 15:09, 19 January 2023 by Jaredsampson (talk | contribs) (→‎PYMOL API: change to get_title API (this was apparently copied from the set_title page))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)