MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / LayoutChangingEventHandler Delegate
The source of the event.
A LayoutChangingArgs that does not contain any event data.

In This Topic
LayoutChangingEventHandler Delegate
In This Topic
Represents a method that handles the LayoutChanging method.
Syntax
'Declaration
 
Public Delegate Sub LayoutChangingEventHandler( _
   ByVal sender As Object, _
   ByVal e As LayoutChangingArgs _
) 
 

Parameters

sender
The source of the event.
e
A LayoutChangingArgs that does not contain any event data.
Remarks
This delegate is associated with the LayoutChangingArgs event data, providing information about the impending layout change. It allows subscribers to inspect the details of the change and, if necessary, cancel the operation. This can be useful for enforcing constraints, validating changes, or performing cleanup before the layout is altered.
See Also