10-05-2018 10:24 PM
Hello,
I am developing custom results processing plug-in. I need to provide specific configuration that will be used within plug-in.
I used Model Plugin - Configure Standard Options and developed VI where I can enter my parameter value.
Further I need to create variable in Parameters.ModelPlugin.PluginSpecific.Options.MyVariable, that will be available in Model Plugin - UUT Done where I plan to use it.
Could you provide by step instruction on how to implement this?
Solved! Go to Solution.
10-08-2018 10:54 AM
no one knows or not clear explanation?
10-10-2018
05:50 AM
- last edited on
12-02-2024
08:47 AM
by
Content Cleaner
Hi,
Please refer to Best Practices for NI TestStand Report Generation and Customization for step by step instructions on creating a result processing model plug-in with required options.
As for adding plugin options, you can either customize the type def (MyCompanyName_MyNewResultProcessorOptions) or use an expression to create properties run-time and assign default values to them:
Parameters.ModelPlugin.PluginSpecific.Options.NewSubProperty("<name>",PropValType_<Type>,False,"",PropOption_DoNothingIfExists)
Hope this helps!
10-10-2018 06:25 AM
Thanks. It workd!