Expands all data nodes in the tree.
()
| 711 | |
| 712 | /** Expands all data nodes in the tree. */ |
| 713 | expandAll(): void { |
| 714 | if (this.treeControl) { |
| 715 | this.treeControl.expandAll(); |
| 716 | } else if (this._expansionModel) { |
| 717 | this._forEachExpansionKey(keys => this._expansionModel?.select(...keys)); |
| 718 | } |
| 719 | } |
| 720 | |
| 721 | /** Collapse all data nodes in the tree. */ |
| 722 | collapseAll(): void { |
nothing calls this directly
no test coverage detected