TextEditor
文本编辑,双击元素进入编辑状态。
关键属性
config: ITextEditorConfig
文本编辑器配置。
可监听 InnerEditorEvent.BEFORE_OPEN 事件,提前配置 app.editor.innerEditor.config。
ts
interface ITextEditorConfig {
selectAll: boolean // 是否自动全选文本,默认为true
}
editDom: HTMLDivElement
编辑文本框,覆盖在画布上的可编辑 dom 元素(用来临时代替文本)。