Description
Adds several outputs, which are all part of the same output range, to the output collection. To add a single output which is not a member of an output range, use the Add method instead.
Syntax
object.AddRange(rangeName as String, outputName() as String)
Arguments
rangeName (Required String) – the name of the output range. Two output ranges in the output collection can not have the same range name.
outputNames (Required Array of Strings) – the names of the individual outputs in the range. The output names must all be unique.
Return Value
None.
Example
'Create an output range of 3 outputs, with names A, B, and C:
Dim outputNames(1 to 3) as String
outputNames(1) = "A"
outputNames(2) = "B"
outputNames(3) = "C"
RDKApp.Outputs.AddRange("myRange", outputNames())