What is the return type from a Get Selected (with list box)
Hello, I need to know what is the return type from a list box. From the scripting Index: Names Default To Here( 1 ); New Window( "Example", fontobj = lb = List Box( {"First Item", "Second Item", "Third Item"}, width( 200 ), max selected( 2 ), nlines( 6 ) ) ); lb << Set Selected( 2 ); Print( lb << Get Selected );Gets returned: {"Second Item"}What object type is this return? List, array? h...