Text type profile attribute
--To fetch value of profile attribute for the participant
OpenP=getProfileAttribute("Text_Profile_Attr")
OpenP.Value -- Returns Hello World
Numeric type profile attributeβ
--To fetch value of profile attribute for the participant
OpenN=getProfileAttribute("Numeric_Profile_Attr")
OpenN.Value -- Returns 3.6
Single choice profile attribute
--To fetch value of profile attribute for the participant
SC_PA=getProfileAttribute("Single_Choice_Profile_Attr")
SC_PA.Value.Text -- returns Choice 1
SC_PA.Value.Code -- returns 1
i=0
SC_PA.Choices[i].Text -- returns Choice 1
SC_PA.Choices[i].Code -- returns 1