Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

선택된 이미지, 비디오 또는 표를 이동시킵니다Move the selected image or video.


Parameters:

NameTypeDescription
actionNameString액션 이름'moveDrawingObject' image or video moving API
xNumber이동할 x 좌표coordinate to move to
yNumber이동할 y 좌표coordinate to move to
isFinishBoolean

이동 완료 여부 (true 사용 권장Whether moving is finished (it is recommended to apply isFinish true when execCommand is moved)


Example:

Code Block
languagejs
themeEmacs
editor.execCommand('moveDrawingObject', 100, 100, true);

...