IUserAccessiableTopicText Method |
Relevant only for Grid question types
Gets and index of a question and an index of a topic and returns its text
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax string TopicText(
int inQuesIdx,
int inTopicIdx
)
Parameters
- inQuesIdx
- Type: SystemInt32
Target question index - inTopicIdx
- Type: SystemInt32
Target topic index
Return Value
Type:
String a string containing the relevant topic text
Examples
If we have a Single Choice Grid question indexed 4, and we would like to use it's text from topic number 8, we can use this function
as follows: TopicText(QRef(4),8);
Then, you can use the returned text.
See Also