|
|
Accessors |
---|
Returns the currently selected tab index. get selectedTabIndex: number | Sets a selected tab index. This will activate the tab of the provided index, activates the tab and fires a notification about the change. If index is passed as -1 i.e. selectedTabIndex = -1 , this implies to clear all tab selection. set selectedTabIndex: (tabIndex: number ) |
|
Methods |
---|
blur: () => void | | | focusNext: () => void | focusPrevious: () => void | | | A callback method that is invoked immediately after Angular has completed initialization of a component's view. It is invoked only once when the view is instantiated. ngAfterViewInit: () => void from AfterViewInit.ngAfterViewInit | A callback method that performs custom clean-up, invoked immediately before a directive, pipe, or service instance is destroyed. ngOnDestroy: () => void from OnDestroy.ngOnDestroy | notifyChildrenChanged: () => void | resize: () => void | | Scrolls the tab headers to the end (right in LTR). scrollEnd: () => void | Scrolls the tab headers to the start (left in LTR). scrollStart: () => void | |
|