Beispiel #1
0
 public TabElement(uint cfgid, string configContent = "")
 {
     this.type           = TabElement.Type.Config;
     this.cfgId          = cfgid;
     this.configContent  = configContent;
     this.selfDefContent = null;
 }
Beispiel #2
0
 public TabElement(string selfDef = "")
 {
     this.type           = TabElement.Type.SelfDef;
     this.cfgId          = 0u;
     this.configContent  = null;
     this.selfDefContent = selfDef;
 }