Fields
String
0
String type.
Int
1
Integer type.
Boolean
2
Boolean type.
List
3
List of strings.
ImportLocation
4
String corresponding to a file import path.
Example
The following example demonstrates checking the SettingType of a setting before accessing the appropriate value field.
Code Block |
---|
var setting = Settings.GetSetting("String Setting"); if (setting.Type != SettingType.String) throw new Exception("Unexpected setting type."); var settingValue = setting.StringValue; |