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






sender
The source of the event.
args
A SideBarItemEventArgs instance containing the event data.
Represents the method that will handle the SideBar ItemHot, ItemCold and ItemSelected events.

Syntax

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

Parameters

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

Remarks

When you create a SideBarItemEventHandler 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