* Get whether this block is movable or not. * * @returns True if movable. * @internal
()
| 831 | * @internal |
| 832 | */ |
| 833 | isMovable(): boolean { |
| 834 | return ( |
| 835 | this.movable && |
| 836 | !this.isInFlyout && |
| 837 | !this.shadow && |
| 838 | !this.isDeadOrDying() && |
| 839 | !this.workspace.isReadOnly() |
| 840 | ); |
| 841 | } |
| 842 | |
| 843 | /** |
| 844 | * Return whether this block's own movable property is true or false. |
nothing calls this directly
no test coverage detected