Click or drag to resize

StyleListManagerBase<TList, TItem, TListManagerEntry>.TryGetListByMembers Method

Try to find an existing list by using only the values of the items. A hint to the name of the existing list can speed up the search, but is not used otherwise.

Namespace: Altaxo.Drawing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public bool TryGetListByMembers(
	IEnumerable<TItem> symbols,
	string nameHint,
	out string nameOfExistingList
)

Parameters

symbols  IEnumerable<TItem>
The items of the list.
nameHint  String
The name of the existing list, to which the items belong. Can be null.
nameOfExistingList  String
If found (the return value is then true), the name of existing list.

Return Value

Boolean
True if a list with such items was found in the manager, otherwise, false.

Implements

IStyleListManager<TList, T>.TryGetListByMembers(IEnumerable<T>, String, String)
See Also