Click or drag to resize

IStyleListManagerTList, TTryGetListByMembers 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.3179.0 (4.8.3179.0)
Syntax
C#
bool TryGetListByMembers(
	IEnumerable<T> symbols,
	string nameHint,
	out string nameOfExistingList
)

Parameters

symbols  IEnumerableT
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.
See Also