ActiveReports 8
ParameterUIClosed Event
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports Namespace > SectionReport Class : ParameterUIClosed Event

Glossary Item Box

Raised after the user closes the query parameters dialog.

Syntax

Visual Basic (Declaration) 
Public Event ParameterUIClosed As SectionReport.ParameterUIClosedHandler
C# 
public event SectionReport.ParameterUIClosedHandler ParameterUIClosed

Example

C#Copy Code
private void SectionReport1_ParameterUIClosed(object sender, bool Cancelled)
{
    System.Windows.Forms.MessageBox.Show ("Parameters sent.");
}
Visual BasicCopy Code
Private Sub SectionReport1_ParameterUIClosed(ByVal sender As Object, ByVal cancelled As Boolean) Handles MyBase.ParameterUIClosed
    MessageBox.Show("Parameters set.")
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also