Join

Creates the new event that contains the timestamps of the two specified variables.

Syntax

Join(var1, var2)

Parameters

Parameter

Type

Description

var1

variableReference

Reference to the variable

var2

variableReference

Reference to the variable

Return

Reference to the new variable.

Note

Creates the new event that contains both the timestamps of var1 and the timestamps of var2.

Examples

Python

import nex
doc = nex.GetActiveDocument()
doc["Events4and5"] = nex.Join(doc["Event04"], doc["Event06"])

NexScript

doc = GetActiveDocument()
doc["Events4and5"] = Join(doc["Event04"], doc["Event06"])