PropertiesSetListT Method |
Sets a list of elements in this Properties-container.
The elements will be serialized using a TypeConverter if possible, or XAML serializer otherwise.
Namespace: Altaxo.Main.ServicesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic void SetList<T>(
string key,
IEnumerable<T> value
)
Parameters
- key String
- The key under which to store the list.
- value IEnumerableT
- The list to store.
Type Parameters
- T
- The element type.
RemarksPassing
null or an empty list as value has the same effect as calling
Remove(String).
See Also