Previous Next


Add Method (RDKOutputs Collection Object)

Description

Adds a new output to the output collection. Use this function to add a single output that is not a member of an output range. To add an output range, use the AddRange method instead.

Syntax

object.Add(outputName as String)

Arguments

outputName (Required String) – the name of the new output. All inputs and ouputs in an RDK Model must have unique names.

Return Value

(RDKOutput) – the new output object.

Example

Set newOutput = RDKApp.Outputs.Add("myOutput")