<node3d:GUI:droplist>.getItems

Returns a list of items in the droplist.

 

<node3d:GUI:droplist>.getItems()

 

Remarks

This command will return a list of all the items in the droplist.

Return Value

A list of strings.

Example

list = viz.addDropList()
list.setPosition(.5,.5)
options = ['A','B','C','D']
list.addItems(options)
print list.getItems()