Recently you've added in designer the "Create label" checkbox. Is it possibile to hide it or to make it default to unchecked (from code)?
Thanks.
Hide or uncheck "Create label"
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
Hide or uncheck "Create label"
You can use following code to hide checkbox:
Code to set state of checkbox to false:
Thank you.
Code: Select all
StiDictionaryPanelService service = StiDictionaryPanelService.GetService();
service.ShowCreateLabel = false;
Code: Select all
StiSettings.Load();
StiSettings.Set("StiDesigner", "CreateLabel", false);
StiSettings.Save();