Adding a Result Trace to a Cartesian Graph
Add a trace (for this example, a far field result) to a Cartesian graph.
myFarFieldTrace = myGraph.Traces:Add(myFarFieldResult)
- A trace is an object and since there may be multiple traces in the project, it is part of the ResultTraceCollection.
- Search for ResultTraceCollection in the Help1.
-
In ResultTraceCollection, under Method
List, search for an applicable method:
- Add(result)
Since we already have ahandle
on the far field result, the result is:Add(myFarFieldResult)
-
Determine the syntax to prepend to
Add(myFarFieldResult):
-
Add a reference to the trace:
myFarFieldTrace = myGraph.Traces:Add(myFarFieldResult)