Difference between revisions of "QuestionGroupLeaf class"

From Catglobe Wiki
Jump to: navigation, search
(Created page with "{{CGscriptClass_Template |Name=<nowiki>QuestionGroupLeaf</nowiki> |Description=<nowiki>Question group leaf.</nowiki> |Methods= {{CGscriptMethods_Template|ReturnType=Array of Q...")
 
Line 13: Line 13:
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}}
 
}}
 
}}
 +
=== <span style="color:#DF8621">'''Examples'''</span> ===
 +
<source lang="javascript">
 +
number qnaireRId = 15644704;
 +
QuestionGroupRoot root = Questionnaire_getQuestionGroups(qnaireRId);
 +
QuestionGroupLeaf leaf = root.FindByQuestion("Q1");
 +
print(leaf.GroupName);//G2
 +
</source>

Revision as of 09:18, 31 January 2019

QuestionGroupLeaf



Question group leaf.


Methods

  • Array of QuestionGroupTree GetChildGroups() - Return all child groups, if empty then it is a leaf.
  • string ToString() - The string representation of the object.

Properties

  • Array of string AllQuestions { get; } - Labels of all questions in this group
  • int Count { get; } - How many children in this group
  • string GroupName { get; } - Name of question group
  • string ObjectTypeName { get; } - The name of the type of object.
  • string SequenceType { get; } - Which kind of question group is it
  • TypeInformation TypeInformation { get; } - Get information about this class.

Examples

number qnaireRId = 15644704;
QuestionGroupRoot root = Questionnaire_getQuestionGroups(qnaireRId);
QuestionGroupLeaf leaf = root.FindByQuestion("Q1");
print(leaf.GroupName);//G2