Selects the tab page. The index of the tab page to select.
(int tabIndex)
| 248 | /// </summary> |
| 249 | /// <param name="tabIndex">The index of the tab page to select.</param> |
| 250 | public void SelectTab(int tabIndex) |
| 251 | { |
| 252 | DockWindow tab = null; |
| 253 | if (tabIndex >= 0 && _tabs.Count > tabIndex && _tabs.Count > 0) |
| 254 | tab = _tabs[tabIndex]; |
| 255 | SelectTab(tab); |
| 256 | } |
| 257 | |
| 258 | /// <summary> |
| 259 | /// Selects the tab page. |
no test coverage detected