Notifications
Clear all
[Closed] Defining Variable in C#
Aug 30, 2015 10:39 pm
I created a custom control inside C#, there is some functions in ManagedServices.dll to interact with maxscript, like:
MaxscriptSDK.ExecuteMaxscriptCommand
My question is, is it possible to define my custom control as variable when is loaded inside max? something like this?:
MyCustomControl mycontrol = new MyCustomControl() ;
MaxscriptSDK.ExecuteMaxscriptCommand("MyControl="mycontrol);