New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Accessing Tabs
Updated over 6 months ago
RadTabStrip has a number of useful methods for accessing the tabs in the tab strip. The following table lists these methods:
| Method | Parameters | Return Value | Description |
|---|---|---|---|
| GetAllTabs | none | IList | Returns a list of all tabs in the tab strip, flattening out the tab strip hierarchy. |
| FindTabByText | string | RadTab | Returns the first tab in the tab strip whose Text property matches the parameter. |
| FindTabByUrl | string | RadTab | Returns the first tab in the tab strip whose NavigateUrl property matches the parameter. |
| FindTabByValue | string | RadTab | Returns the first tab in the tab strip whose Value property matches the parameter. |