public LabelStateElement LabelState(string name, string value, LabelStateType type, string colinput, string optionlabel, string coloptionlabel)
 {
     return new LabelStateElement(name, value, type, colinput, optionlabel, coloptionlabel);
 }
 public LabelStateElement LabelState(string name, string value, LabelStateType type, string colinput)
 {
     return new LabelStateElement(name, value, type, colinput);
 }
Exemplo n.º 3
0
 public LabelStateElement(string name, string value, LabelStateType type, string colinput)
     : base(name, value, colinput)
 {
     _labelStateType = type;
 }
Exemplo n.º 4
0
 public LabelStateElement(string name, string value, LabelStateType type, string colinput, string labeltext, string collabel)
     : base(name, value, colinput, labeltext, collabel)
 {
     _labelStateType = type;
 }
Exemplo n.º 5
0
 public LabelStateElement(string name, string value, LabelStateType type)
     : base(name, value)
 {
     _labelStateType = type;
 }