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

Initializes a new distributed dimension-value pair for the specified agent using the specified value ID. If a distributed dimension-value pair already exists for the specified agent with the specified value ID, this method will return that distributed dimension-value pair instead.

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

Syntax

C#
public static DistributedDimensionValuePair<vType> NewDistributedDimensionValuePair<vType>(
	Agent a,
	vType valueID
)
where vType : IComparable

Parameters

a
Type: Clarion.Framework..::..Agent
The agent in which the distributed dimension-value pair is to be generated
valueID
Type: vType
The value ID for the distributed dimension-value pair to be generated

Type Parameters

vType

Return Value

A new (or retrieved) distributed dimension-value pair for the specified agent with the specified value ID

See Also