Instruments

View as Markdown

Definition

A collection of Instrument objects currently used by a script.

Property Value

An array of Instrument objects

Syntax

Instruments[]

Examples

1protected override void OnStateChange()
2{
3 if (State == State.DataLoaded)
4 {
5 // Print all instruments which have been loaded
6 foreach (Instrument i in Instruments)
7 {
8 Print(i.FullName);
9 }
10 }
11}