ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / DataSourceIconClicked Event

In This Topic
    DataSourceIconClicked Event
    In This Topic
    Gets the value from the DialogResult when the data source icon is clicked.
    Syntax
    'Declaration
     
    Public Event DataSourceIconClicked As DataSourceIconClickedEventHandler
    public event DataSourceIconClickedEventHandler DataSourceIconClicked
    Event Data

    The event handler receives an argument of type DataSourceIconClickedEventArgs containing data related to this event. The following DataSourceIconClickedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the value from the data source dialog.  
    Remarks
    This event is fired following the closure of the DataSource dialog, which is typically used for configuring or selecting the data source for the report. It signifies that the user has completed their interaction with the DataSource dialog, allowing for post-dialog actions or updates to be initiated in response.

    Event handlers can utilize this event to implement custom logic, such as refreshing data or UI elements based on the new or modified data source settings.

    See Also