Page tree

Versions Compared

Key

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

...

setText(text)

  • text <String> 셀 내부에 설정할 Text 문자열

파라메터로 넘겨받은 Text 문자열값을 셀의 BODY의 내부 Text로 설정합니다.

Code Block
languagejs
themeEmacs
var body = editor.getAPIModels('.se-contents')[0];
body.setText('본문에 텍스트를 추가합니다. 기존에 입력된 내용은 모두 지워집니다.');

...