IUserAccessiableSetTopicText Method |
Relevant for grid questions only.
Will change the header text of the topic
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax void SetTopicText(
int inQuesIdx,
int inTopicIdx,
string inText
)
Parameters
- inQuesIdx
- Type: SystemInt32
Target question index - inTopicIdx
- Type: SystemInt32
Target topic index - inText
- Type: SystemString
The string to write to the topic
Return Value
Type:
None
Examples
If we have a Grid question indexed 4, and we would like to set text to topic number 8 , we can use this function
as follows: SetTopicText(QRef(4),8,"Whats up Doc?");
it will change the text of topic 8 to "Whats up Doc?"
See Also