A class that provides properties for reading from the Emulation object.
connections | Gets all of the emulation connections. |
name | Gets the name of the variable. |
variables | Gets all of the emulation variables. |
Emulation | Creates a reference to the Emulation object. |
Gets all of the emulation connections.
int numConnections = Emulation().connections.length;
Emulation.Connection myConnection = Emulation().connections[1];
Gets all of the emulation variables.
int numVariables = Emulation().variables.length;
Emulation.Variable myVariable = Emulation().variables[1];
Emulation( ) |
Creates a reference to the Emulation object.
Emulation emulation = Emulation();