Previous Next


Inputs Property (RDKInstance Object)

Description

Returns the inputs associated with the instance of a correlation matrix.

Syntax

object.Inputs(index as Integer)

Arguments

index (Required integer) – the position of the input in the correlation matrix.

Return Value

(RDKInput) – an input object that is attached to the instance of the correlation matrix.

Example

'Attach InputA and InputB to the first two positions of the third instance of myMatrix
With RDKApp.Correlations("myMatrix").Instances(3)
    Set .Inputs(1) = RDKApp.Inputs("inputA")
    Set .Inputs(2) = RDKApp.Inputs("inputB")
End With