Click or drag to resize

IPropertyServiceGetValueT(String, T) Method

Gets the property value from UserSettings, then ApplicationSettings, then BuiltinSettings.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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

T
The property value (if the property was found), or the default value provided in the argument (if the property was not found).
See Also