ICreate.Controls.Bars Send comments on this topic.
CollapsingGroupPanelBodyBoundsChangedEventHandler Delegate
See Also 
ICreate.Controls.Bars Namespace : CollapsingGroupPanelBodyBoundsChangedEventHandler Delegate






sender
The source of the event.
args
A CollapsingGroupPanelBodyBoundsChangedEventArgs instance containing the event data.
Represents the method that will handle the CollapsingGroupPanel BodyBoundsChanged event.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub CollapsingGroupPanelBodyBoundsChangedEventHandler( _
   ByVal sender As Object, _
   ByVal args As CollapsingGroupPanelBodyBoundsChangedEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New CollapsingGroupPanelBodyBoundsChangedEventHandler(AddressOf HandlerMethod)
C# 
public delegate void CollapsingGroupPanelBodyBoundsChangedEventHandler( 
   object sender,
   CollapsingGroupPanelBodyBoundsChangedEventArgs args
)
Delphi 
public delegate CollapsingGroupPanelBodyBoundsChangedEventHandler( 
    sender: TObject;
    args: CollapsingGroupPanelBodyBoundsChangedEventArgs
);
JScript 
public delegate CollapsingGroupPanelBodyBoundsChangedEventHandler( 
   sender : Object,
   args : CollapsingGroupPanelBodyBoundsChangedEventArgs
)
Managed Extensions for C++ 
public: __gc __delegate void CollapsingGroupPanelBodyBoundsChangedEventHandler( 
   Object* sender,
   CollapsingGroupPanelBodyBoundsChangedEventArgs* args
)
C++/CLI 
public delegate void CollapsingGroupPanelBodyBoundsChangedEventHandler( 
   Object^ sender,
   CollapsingGroupPanelBodyBoundsChangedEventArgs^ args
)

Parameters

sender
The source of the event.
args
A CollapsingGroupPanelBodyBoundsChangedEventArgs instance containing the event data.

Remarks

When you create a CollapsingGroupPanelBodyBoundsChangedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.

Requirements

Namespace: ICreate.Controls.Bars

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ICreate.Controls.Bars (in ICreate.Controls.Bars.dll)

See Also