Example #1
0
 public ConfigElement(string Key, ConfigElementType Type, object DefaultValue)
 {
     mKey = Key;
     mType = Type;
     CurrentValue = DefaultValue;
     mUserConfigured = false;
 }
 public ConfigElement(string Key, ConfigElementType Type, object DefaultValue)
 {
     this.string_0            = Key;
     this.configElementType_0 = Type;
     this.CurrentValue        = DefaultValue;
     this.bool_0 = false;
 }
Example #3
0
 public ConfigElement(string Key, ConfigElementType Type, object DefaultValue)
 {
     mKey            = Key;
     mType           = Type;
     CurrentValue    = DefaultValue;
     mUserConfigured = false;
 }
Example #4
0
        public static bool IsMultiValueInput(ConfigElementType elType)
        {
            var isMultiValued = false;

            if (elType >= ConfigElementType.SELECT_SINGLE)
            {
                isMultiValued = true;
            }
            return(isMultiValued);
        }