Click or drag to resize

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.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void SetList<T>(
	string key,
	IEnumerable<T> value
)

Parameters

key  String

[Missing <param name="key"/> documentation for "M:Altaxo.Main.Services.Properties.SetList``1(System.String,System.Collections.Generic.IEnumerable{``0})"]

value  IEnumerableT

[Missing <param name="value"/> documentation for "M:Altaxo.Main.Services.Properties.SetList``1(System.String,System.Collections.Generic.IEnumerable{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Main.Services.Properties.SetList``1(System.String,System.Collections.Generic.IEnumerable{``0})"]

Remarks
Passing null or an empty list as value has the same effect as calling Remove(String).
See Also