I have just found out that from the C# code I can start recording modules with
MyRecording.Start();
Let us assume that the module containing the C# code doing the call is MainModule and that MyRecording has some variables of its own.
The question is, can I
- data binding between global parameters and MainModule
- the C# code of MainModule binds some of the global parameters to the variables of MyRecording
- the C# code calls MyRecording
In other words, I need to know if I can do the data binding of a module inside C# before calling the module itself. I hope I am making myself clear

Thanks in advance!!!