In designer i need to programmatically hide the "Use aliases" checkbox, setting its value to false (the default is true).
The checkbox is the one in red circle (in Italian):

How can i do this?
Thank you.
Code: Select all
Stimulsoft.Report.Design.Panels.StiDictionaryPanelService service = Stimulsoft.Report.Design.Panels.StiDictionaryPanelService.GetService();
service.ShowUseAliases = false;
Code: Select all
StiSettings.Load();
StiSettings.Set("StiDesignerOptions", "UseAliases", false);
StiSettings.Save();
Code: Select all
StiSettings.Set("StiDesignerOptions", "UseAliases", false);
Code: Select all
StiSettings.Set("StiDesigner", "UseAliases", false);