Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

TabItem Class

Represents a tab item in a TabStrip control.

For a list of all members of this type, see TabItem Members.

System.Object
   EO.Web.NavigationItem
      EO.Web.BaseMenuItem
         EO.Web.TabItem

[Visual Basic]
Public Class TabItem
    Inherits BaseMenuItem
[C#]
public class TabItem : BaseMenuItem

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

A TabStrip control is made up of a hierarchy of tab items represented by TabItem objects. A group of tab items that have the same parent item forms a TabItemGroup and is represented by TabItemGroup object. The group can be accessed by SubGroup property. You can access parent item of the subgroup by using TabItemGroup.ParentItem property.

Each subgroup maintains a collection of child TabItem objects. You can access this child item collection through:

Both properties access the same TabItemCollection object.

To customized a tab item's appearance and contents:

To... Use...
Specifies the tab item text Use TabItem.Text.Html
Specifies the tab item icons use LeftIcon and RightIcon property.
Specifies tab item styles Use NormalStyle, HoverStyle, ExpandedStyle, SelectedStyle, SelectedHoverStyle, SelectedExpandedStyle, DisabledStyle property
Navigate pages Use NavigateUrl property

Tab item inherits from BaseMenuItem, see Navigation Item topic for more details.

Requirements

Namespace: EO.Web

Assembly: EO.Web (in EO.Web.dll)

See Also

TabItem Members | EO.Web Namespace | TabItemGroup | TabStrip


Direct link to this topic