Remove Exporting Formats
Posted: Thu Aug 30, 2007 8:53 am
How should I remove the exporting formats which I have not required from preview window toolbar ?
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
btnExport.Visible = False
Code: Select all
Dim service As StiService
For Each service In StiConfig.Services.GetServices(GetType(StiExportService))
If (TypeOf service Is StiPdfExportService OrElse TypeOf service Is StiHtmlExportService) Then
service.ServiceEnabled = False
End If
Next