Home › Forums › Problems and solutions in GDL › Parameter connections › Newparameter › Reply To: Newparameter
May 9, 2016 at 08:50
#2450
Participant
If I define a parameter with array that has separately string values, and integer values, how can I refer for the string values? I want to write the string values, but anyhow I do it I get back the integer values
!MASTER
dim intparam[]
intparam[1]=1
intparam[2]=2
intparam[3]=3
intparam[3]=4
dim strparam[]
strparam[1]='opt1'
strparam[2]='opt2'
strparam[3]='opt3'
strparam[3]='opt4'
!PARAMETERS
values{2} "a" intparam[], strparam[]
!2D
text2 0, 0, a
G. Szabadi