
Thanks.
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();