RadTabStrip for ASP.NET

RadTabStrip Send comments on this topic.
RadTabStrip Class
See Also  Members  
Telerik.WebControls Namespace : RadTabStrip Class


A navigation control used to create tabbed interfaces.

Object Model





 

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

Syntax

Visual Basic (Declaration) 
Public Class RadTabStrip 
   Inherits RadSkinnableControl
   Implements ITabContainer 
Visual Basic (Usage)Copy Code
Dim instance As RadTabStrip
C# 
public class RadTabStrip : RadSkinnableControl, ITabContainer  

Remarks

The RadTabStrip control is used to display a list of tabs in a Web Forms page and is often used in combination with a RadMultiPage control for building tabbed interfaces. The RadTabStrip control supports the following features:

  • Databinding that allows the control to be populated from various datasources
  • Programmatic access to the RadTabStrip object model which allows to dynamic creation of tabstrips, populate h tabs, set properties.
  • Customizable appearance through built-in or user-defined skins.

Tabs

The RadTabStrip control is made up of tree of tabs represented by Tab objects. Tabs at the top level (level 0) are called root tabs. A tab that has a parent tab is called a child tab. All root tabs are stored in the Tabs collection. Child tabs are stored in a parent tab's Tabs collection.

Each tab has a Text and a Value property. The value of the Text property is displayed in the RadTabStrip control, while the Value property is used to store any additional data about the tab, such as data passed to the postback event associated with the tab. When clicked, a tab can navigate to another Web page indicated by the NavigateUrl property.

Inheritance Hierarchy

System.Object
   System.Web.UI.Control
      System.Web.UI.WebControls.WebControl
         System.Web.UI.WebControls.BaseDataBoundControl
            System.Web.UI.WebControls.DataBoundControl
               Telerik.RadTabStripUtils.RadControl
                  Telerik.RadTabStripUtils.RadSkinnableControl
                     Telerik.WebControls.RadTabStrip

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