QuestionnaireLayout class
Revision as of 07:46, 27 October 2016 by Nguyenhientrung (talk | contribs)
QuestionnaireLayout
A layout for a questionnaire
Constructors
- (number resourceId "ResourceId of existing QuestionnaireLayout") - Fetch existing QuestionnaireLayout
- (string name "Resource name", number parentResourceId "Parent resource") - Create new QuestionnaireLayout
Methods
- Empty Save() - Save the QuestionnaireLayout
- string ToString() - The string representation of the object
Properties
- number ResourceId { get; } - The Id of the Resource
- string ResourceName { get; } - The name of the Resource
- string Description { get; set; } - Description of the QuestionnaireLayout
- string Html { get; set; } - The Html of the QuestionnaireLayout
- string Css { get; set; } - The Css of the QuestionnaireLayout
- string ObjectTypeName { get; } - The name of the type of object
- TypeInformation TypeInformation { get; } - Get information about this class
Examples
number parentId = 1234;
QuestionnaireLayout l = new QuestionnaireLayout("Test layout", parentID);
l.Html = "<div id='questioncontent'>[[QUESTION]]</div><div id='navigationbar'>[[NAVIGATION]]</div>";
l.Css = ".cg-ui-question > .cg-ui-text {font-weight: bold;}";
l.Save();
l.ResourceId;