cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
martin_snogdahl
Level III

Extract list from Get List Check-command

Using the Get List Check command I get the following:

LC = col << Get List Check

The Log will show

LC = List Check({"Argon", "Krypton", "Air"});

How do I extract the list from inside the List Check()-statement? I want to end up with a variable containing the list.

LC_list = {"Argon", "Krypton", "Air"}

1 REPLY 1
ian_jmp
Staff

Re: Extract list from Get List Check-command

Take a look in the Scripting Index for 'Head()' and 'Arg()'.

// Make a table

dt =

New Table( "List Check",

Add Rows( 0 ),

New Column( "Check",

Character,

"Nominal",

List Check( {"A", "B", "C"} ),

Set Values( {} )

)

);

// Get the values of a List Check property into a list

lc = Column(dt, "Check") << getListCheck;

lcList = Arg(lc, 1);