[This is preliminary documentation and is subject to change.]

Initializes a new dimension-value pair with the specified dimension and value IDs. If a dimension-value pair already exists with the specified dimension and value IDs, this method will return that dimension-value pair instead.

Namespace: Clarion
Assembly: CLARIONLibrary (in CLARIONLibrary.dll) Version: 6.1.0.7 (6.1.0.7)

Syntax

C#
public static DimensionValuePair<dType, vType> NewDimensionValuePair<dType, vType>(
	dType dimensionID,
	vType valueID
)
where vType : IComparable

Parameters

dimensionID
Type: dType
The dimension ID for the dimension-value pair to be generated
valueID
Type: vType
The value ID for the dimension-value pair to be generated

Type Parameters

dType
vType

Return Value

A new (or retrieved) dimension-value pair with specified dimension and value IDs

See Also