...
- html <String> 교체할 HTML String.
Element 자신을 파라메터로 인자로 넘겨받은 HTML String으로 교체합니다.
...
remove()
Element 자신을 제거합니다.
Status | ||||||
---|---|---|---|---|---|---|
|
Code Block | ||||
---|---|---|---|---|
| ||||
var table = editor.getAPIModelById('id'); table.remove(); |
...
- index <Number> 설정할 열의 위치.
- value 설정할 너비 값너비값
- unit 너비값의 단위 ('px', '%'). 기본값 'px'.
...
Code Block | ||||
---|---|---|---|---|
| ||||
var table = editor.getAPIModelById('id'); table.insertRow(1setColWidth(1, 100, 'px'); table.setColWidth(1, 20, '%'); |
setRowHeight(index, value)
- index <Number> 설정할 행의 위치
- value 설정할 높이 값높이값. 행의 높이는 'px'로만 설정 할 수 있습니다.
...
Code Block | ||||
---|---|---|---|---|
| ||||
var table = editor.getAPIModelById('id'); table.insertRowsetRowHeight(1, 100); |
setHeight(value[, unit = 'px'])
- value<Number> 설정의 표의 높이값
- unit <String> 높이값의 단위 ('px', '%'). 기본값 'px'.
...
setWidth(value[, unit = 'px'])
- value<Number> 설정의 표의 너비값
- unit <String> 너비값의 단위 ('px', '%'). 기본값 'px'.
...