ActiveReports Developer 7
ResetWatermark Method
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports Namespace > SectionReport Class : ResetWatermark Method

Glossary Item Box

Resets the watermark to its default value.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub ResetWatermark() 
C# 
public virtual void ResetWatermark()

Example

C#Copy Code
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
{
    this.ResetWatermark();
}
Visual BasicCopy Code
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Me.ResetWatermark()
End Sub

See Also