Collapses this data node. Implemented for TreeKeyManagerItem.
()
| 1451 | |
| 1452 | /** Collapses this data node. Implemented for TreeKeyManagerItem. */ |
| 1453 | collapse(): void { |
| 1454 | if (this.isExpandable) { |
| 1455 | this._tree.collapse(this._data); |
| 1456 | } |
| 1457 | } |
| 1458 | |
| 1459 | /** Expands this data node. Implemented for TreeKeyManagerItem. */ |
| 1460 | expand(): void { |
no test coverage detected