Button을 편집하는데 사용되는 API 모델입니다.
Element 자신을 제거합니다.
var run = editor.getAPIModelById('id'); run.remove();
Element 자신을 파라메터로 넘겨받은 HTML String으로 교체합니다.
var run = editor.getAPIModelById('id'); run.replace('<p><span>Paragraph replaced</span></p>');