(part: string)
| 610 | return this.page.rects.clientToDisplay(clientRect); |
| 611 | } |
| 612 | getWorldRect(part: string) { |
| 613 | const clientRect = this.getClientRect(part); |
| 614 | |
| 615 | if (clientRect == null) { |
| 616 | return; |
| 617 | } |
| 618 | |
| 619 | return this.page.rects.clientToWorld(clientRect); |
| 620 | } |
| 621 | |
| 622 | removeFromRegion() { |
| 623 | const items = this.react.region.react.collab.noteIds.slice(); |
no test coverage detected