Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

에디터 내부에 정의된 액션을 실행합니다.


Parameters:

Name

Type

Description

actionNameString

action 이름

args
각 action별 parameters


Return:

Type

Attribute

Description

Object

{

    isSuccess: true,

    errorType: null,

    errorMessage: null

}

액션 실행 결과

isSuccess: 실행 성공 여부

errorType: 실행 실패 시 에러타입

errorMessage: 실행 실패 시 에러메시지


Example:

var result = editor.execCommand('insertText', 'Hello SynapEditor');
if (!result.isSuccess) {
	console.error(result.errorMessage);
}
  • No labels