Exemple #1
0
 public override void addChildProperties(childProperties props) {
   props.Add(new childProperties.childProperty(this, "check_item", "type", "checkBox"));
   props.Add(new childProperties.childProperty(this, "check_item", "group_eval", varName));
   props.Add(new childProperties.childProperty(this, "check_item", "layout", "selectWord"));
 }
Exemple #2
0
 public override void addChildProperties(childProperties props) {
   props.Add(new childProperties.childProperty(this, "sound_sentence", "group_sound", varName));
   props.Add(new childProperties.childProperty(this, "sound_sentences", "group_sound", varName));
 }
Exemple #3
0
 public override void addChildProperties(childProperties props) {
   props.Add(new childProperties.childProperty(this, "gap_fill", "group_set", varName));
   props.Add(new childProperties.childProperty(this, "gap_fill", "height", gap_fillHeight.doubleLine.ToString()));
   props.Add(new childProperties.childProperty(this, "gap_fill", "inline", "false"));
 }
Exemple #4
0
 public override void addChildProperties(childProperties props) {
   if (this.type != gap_fill_sourceType.Text)
     props.Add(new childProperties.childProperty(Root, "gap_fill", "group_eq_width", varName));
   if (case_sensitive)
     props.Add(new childProperties.childProperty(Root, "gap_fill", "eval_mode", "caseSensitive"));
 }
Exemple #5
0
 public override void addChildProperties(childProperties props) {
   props.Add(new childProperties.childProperty(this, "check_item", "group_eval", varName));
   if (type == check_itemType.no) type = check_itemType.checkBox;
   props.Add(new childProperties.childProperty(this, "check_item", "type", type.ToString()));
   if (type == check_itemType.radioButton)
     props.Add(new childProperties.childProperty(this, "eval_group", eval_Type.And.ToString(), varName));
 }
Exemple #6
0
 public override void addChildProperties(childProperties props) {
   if (is_eval_group == eval_Type.And)
     props.Add(new childProperties.childProperty(this, "eval_group", eval_Type.And.ToString(), varName));
   if (is_eval_group == eval_Type.no || start_with == tableStart_with.evalControl) return;
   props.Add(new childProperties.childProperty(this, "all", "group_eval", varName));
 }
Exemple #7
0
 public override void addChildProperties(childProperties props) {
   table tb = myTable();
   if (tb.isHtml) return;
   if (tb.start_with != tableStart_with.evalControl && tb.eval_row == eval_Type.no) return;
   props.Add(new childProperties.childProperty(this, "all", "group_eval", varName));
   if (tb.eval_row == eval_Type.And)
     props.Add(new childProperties.childProperty(this, "eval_group", eval_Type.And.ToString(), varName));
 }