ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionReport Class / ParameterUIClosed Event
Example

In This Topic
    ParameterUIClosed Event
    In This Topic
    Raised after the user closes the query parameters dialog.
    Syntax
    'Declaration
     
    Public Event ParameterUIClosed As SectionReport.ParameterUIClosedHandler
    public event SectionReport.ParameterUIClosedHandler ParameterUIClosed
    Example
    private void SectionReport1_ParameterUIClosed(object sender, bool Cancelled)
    {
        System.Windows.Forms.MessageBox.Show ("Parameters sent.");
    }
    Private Sub SectionReport1_ParameterUIClosed(ByVal sender As Object, ByVal cancelled As Boolean) Handles MyBase.ParameterUIClosed
        MessageBox.Show("Parameters set.")
    End Sub
    See Also