Hi,
I am looking for a way to set the following option via code:
I have found the class "StiDesignerInfo" which has the property "RunDesignerAfterInsert" but I don't know how to access and set this property...
Can you help me?
Cheers,
Pascal
How can I set this option in code?
Re: How can I set this option in code?
Hello.
There is no static option for this setting.
You can do it with next code:
Thank you.
There is no static option for this setting.
You can do it with next code:
Code: Select all
StiSettings.Load();
StiSettings.Set("StiDesigner", "RunDesignerAfterInsert", true);
StiSettings.Save();
Re: How can I set this option in code?
Worked, thank you!
Didn't know about these non-static settings...
Cheers,
Pascal
Didn't know about these non-static settings...
Cheers,
Pascal
Re: How can I set this option in code?
Hello.
We are glad to help you.
You could set any settings this way, if you know its name.
Thank you.
We are glad to help you.
You could set any settings this way, if you know its name.
Thank you.