Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Clears the report view and fills it with the background color of the control.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public void Clear()
public:
void Clear()
member Clear : unit -> unit
Public Sub Clear
Remarks
The Clear method resets the ReportViewer user interface elements to their default states.
Examples
Legacy Code Example
private void button1_Click(object sender, EventArgs e)
{
reportViewer.Clear();
}
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
ReportViewer1.Clear()
End Sub
See Also
ReportViewer Class
Microsoft.Reporting.WinForms Namespace
Return to top