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

Gets the dimension-value pair with the specified dimension and value IDs. If the dimension-value pair cannot be found, this method returns null.

Namespace: Clarion
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

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

Parameters

dimensionID
Type: dType
The dimension ID of the dimension-value pair to get
valueID
Type: vType
The value ID of the dimension-value pair to get

Type Parameters

dType
vType

Return Value

The dimension-value pair with the specified dimension and value IDs or null if the dimension-value pair cannot be found

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionIf the singleton world instance has not been initialized

See Also