ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / ToolboxItemChangedEventHandler Delegate
The source of the event.
ToolboxItemChangedArgs class which contains the event data.

In This Topic
    ToolboxItemChangedEventHandler Delegate
    In This Topic
    Represents a method that will handle the ToolboxItemChanged event.
    Syntax
    'Declaration
     
    Public Delegate Sub ToolboxItemChangedEventHandler( _
       ByVal sender As Object, _
       ByVal e As EventArgs _
    ) 
    public delegate void ToolboxItemChangedEventHandler( 
       object sender,
       EventArgs e
    )

    Parameters

    sender
    The source of the event.
    e
    ToolboxItemChangedArgs class which contains the event data.
    Remarks
    This delegate is used for handling ToolboxItemChanged events, which are triggered when there is a change in the selection or configuration of a toolbox item within the ActiveReports designer environment. The event can be used to respond to changes in the toolbox, such as enabling or disabling properties or updating the UI based on the current toolbox selection.
    See Also