CompoundTransformationTryGetCompoundTransformation Method |
Try to get a compound transformation. Use this function when in doubt how many transformations the enumeration yields.
The behavior is as follows: if the enumeration is null or empty, the return value is null. If the enumeration contains only one
element, the return value is that element. If the enumeration contains multiple elements, the return value is a compound transformation
with all elements.
Namespace: Altaxo.Data.TransformationsAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static IVariantToVariantTransformation? TryGetCompoundTransformation(
IEnumerable<IVariantToVariantTransformation> transformations
)
Parameters
- transformations IEnumerableIVariantToVariantTransformation
- Enumeration of transformations.
Return Value
IVariantToVariantTransformationIf the enumeration is null or empty, the return value is null. If the enumeration contains only one
element, the return value is that element. If the enumeration contains multiple elements, the return value is a compound transformation
with all elements.
See Also