MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / StatusChangedEventHandler Delegate
The source of the event.
LayoutChangingArgs class which contains the event data.

In This Topic
StatusChangedEventHandler Delegate
In This Topic
Represents a method that handles the StatusChanged event.
Syntax
'Declaration
 
Public Delegate Sub StatusChangedEventHandler( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
) 
 

Parameters

sender
The source of the event.
e
LayoutChangingArgs class which contains the event data.
Remarks
This delegate is used for handling StatusChanged events, which are triggered when there is a change in the status of an object within the ActiveReports designer environment. The event is a general-purpose notification mechanism that can be used to signal various status changes, such as connection status, editing mode, or other state transitions that do not require additional data to describe.
See Also