IPropertyServiceGetValueT(String, T) Method |
Gets the property value from UserSettings, then ApplicationSettings, then BuiltinSettings.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax T GetValue<T>(
string property,
T defaultValue
)
Parameters
- property String
- The property key (as a string).
- defaultValue T
- The default value that is returned if the property is not found.
Type Parameters
- T
- Type of the property value.
Return Value
TThe property value (if the property was found), or the default value provided in the argument (if the property was not found).
See Also