Page tree

Versions Compared

Key

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

Paragraph extends Element

문단을 편집하는데 사용되는 API 모델입니다The API model used to edit paragraphs.

Methods

Table of Contents
maxLevel3
minLevel3

append(html)

  • html <String> 추가할 HTML <String> HTML String to append.

인자로 넘겨받은 HTML String으로 Element의 뒤쪽에 자식으로 추가합니다The HTML String passed as an argument is added as a child at the back of the Element.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.append('<span>TEXT</span>');

prepend(html)

  • html <String> 추가할 HTML <String> HTML String to append.

인자로 넘겨받은 HTML String으로 Element의 앞쪽에 자식으로 추가합니다The HTML String passed as an argument is added as a child to the front of the Element.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.prepend('<span>TEXT</span>');

remove()

Removes the Element 자신을 제거합니다itself.

Status
subtletrue
colourRed
title모든 Element를 제거할 경우 이후의 작업에서 오류가 발생할 수 있습니다If all elements are removed, errors may occur in subsequent operations.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.remove();

replace(html)

  • html <String> 교체할 <String> The HTML String to replace.

Element 자신을 인자로 넘겨받은 HTML String으로 교체합니다Replaces the element itself with the HTML String passed as an argument.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.replace('<p><span>Paragraph replaced</span></p>');

...

  • value <String> tagName ('P', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6')

문단을 표현할 tagName을 설정합니다. Set tagName to display paragraph.
ex) 'P', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6'

P tag로 설정되어 있는 문단을 If a paragraph set as P tag is set to 'H1'으로 설정하면 <H1> tag로 변경됩니다, it is changed to <H1> tag.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.setHeading('H1');

setText(text)

  • text <String> 문단에 설정할 Text 문자열

...

  • <String> Text string to set in the paragraph

Set the text string value passed as an argument to the paragraph to Text.

Code Block
languagejs
themeEmacs
var paragraph = editor.getAPIModelById('id');
paragraph.setText('문단에 들어가는 내용입니다This is what goes into the paragraph.');