HTMLContainer extends Element
HTMLContainer를 편집하는데 사용되는 API 모델입니다The API model used to edit the HTMLContainer.
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 container = editor.getAPIModelById('id');
container.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 container = editor.getAPIModelById('id');
container.replace('<span>HTMLContainer replaced</span>'); |
setHeight(value[, unit = 'px'])
- value<Number> 높이값Height
- unit <String> 높이값의 단위 <String> Unit of height ('px', '%'). 기본값 default 'px'.
HTML Container의 높이를 설정합니다Set the height of the HTML Container.
Code Block |
---|
|
var container = editor.getAPIModelById('id');
container.setHeight(200);
container.setHeight(200, 'px'); |
setWidth(value[, unit = 'px'])
- value<Number> 너비값Width
- unit <String> 너비값의 단위 Unit of width ('px', '%'). 기본값 default 'px'.
HTML Container의 너비를 설정합니다Set the width of the HTML Container.
Code Block |
---|
|
var container = editor.getAPIModelById('id');
container.setWidth(400);
container.setWidth(100, '%'); |
...