RadTabStrip for ASP.NET

RadTabStrip Send comments on this topic.
TabStripEventHandler Delegate
See Also 
Telerik.WebControls Namespace : TabStripEventHandler Delegate


sender
The source of the event.
e
A TabStripEventArgs than contains the event data
Represents the method that will handle the TabCreated, TabDataBound and TabClick events of a RadTabStrip control.  

 

Namespace: Telerik.WebControls
Assembly: RadTabStrip (in RadTabStrip.dll)

Syntax

Visual Basic (Declaration) 
Public Delegate Sub TabStripEventHandler( _
   ByVal sender As Object, _
   ByVal e As TabStripEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New TabStripEventHandler(AddressOf HandlerMethod)
C# 
public delegate void TabStripEventHandler( 
   object sender,
   TabStripEventArgs e
)

Parameters

sender
The source of the event.
e
A TabStripEventArgs than contains the event data

Remarks

The TabCreated event is raised when a tab in the RadTabStrip control is created.

The TabDataBound event is raised when a tab in the RadTabStrip control is databound to a source.

The TabClick event is raised when a tab in the RadTabStrip control is clicked.

Requirements

Namespace: Telerik.WebControls

Platforms: Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: RadTabStrip (in RadTabStrip.dll)

See Also