Hi!
I am scripting in C# to read for example the "Minimum password length" for starters.
The idea is to be able to modify this and other parameters in runtime.
the code I use:
IProject context;
context.VariableCollection["Debug1"].SetValue(0, Convert.ToInt32(context.GetDynamicProperty("MinPwLength")));
Were I am writing the value of the property to a debug variable to show in runtime.
Not working nevertheless.
Thanks in advanced!!