Returns a list of items in the droplist.
This command will return a list of all the items in the droplist.
A list of strings.
droplist = viz.addDropList()
droplist.setPosition(.5,.5)
options = ['A','B','C','D']
droplist.addItems(options)
print(droplist.getItems())