선택된 이미지, 비디오 또는 표를 이동시킵니다Move the selected image or video.
Parameters:
Name | Type | Description |
---|---|---|
actionName | String액션 이름 | 'moveDrawingObject' image or video moving API |
x | Number | 이동할 x 좌표coordinate to move to |
y | Number | 이동할 y 좌표coordinate to move to |
isFinish | Boolean | 이동 완료 여부 (true 사용 권장Whether moving is finished (it is recommended to apply isFinish true when execCommand is moved) |
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
editor.execCommand('moveDrawingObject', 100, 100, true); |
...