Disable / Deactive watermark
Posted: Sat Feb 13, 2016 11:47 am
Hello, How can i disable or deactivate my report watermark by code in vb.net ?
thanks a lot.
thanks a lot.
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
Dim report = New StiReport()
report.Load("1.mrt")
report.Pages(0).Watermark.Enabled = False
report.Compile()
report.Render()
report.Show()