Hide dictionary menu
Posted: Mon Aug 20, 2007 5:28 am
I would like to hide or make inaccessible the dictionary menu (rounded in red in this image):

Thanks.

Thanks.
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
StiReport report = new StiReport();
Stimulsoft.Report.Design.Panels.StiDictionaryPanelService dService = Stimulsoft.Report.Design.Panels.StiDictionaryPanelService.GetService();
//Hide Buttons in the Dictionary Toolbar
dService.ShowActionsButton = false;
dService.ShowNewButton = false;
dService.ShowEditButton = false;
dService.ShowDeleteButton = false;
dService.ShowSortItemsButton = false;
dService.ShowUpButton = false;
dService.ShowDownButton = false;
//If you Also need to Disable Right Click Context Menu in Dictionary
dService.ShowContextMenu = false;
report.Design();