HorizontalLine extends Element
가로줄을 편집하는데 사용되는 API 모델입니다API model used to edit horizontal lines.
Methods
remove()
Removes the Element 자신을 제거합니다itself.
Status |
---|
| |
---|
subtle | true |
---|
colour | Red |
---|
title | 모든 Element를 제거할 경우 이후의 작업에서 오류가 발생할 수 있습니다If all elements are removed, errors may occur in subsequent operations. |
---|
|
Code Block |
---|
|
var hr = editor.getAPIModelById('id');
hr.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 |
---|
|
var hr = editor.getAPIModelById('id');
hr.replace('<p><span>Horizontal line replaced</span></p>'); |
...