#鸿蒙学习大百科#RichEditor如何设置用户预设的样式?

RichEditor如何设置用户预设的样式?

HarmonyOS
2024-10-26 09:26:13
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
天涯独一隅

setTypingStyle设置用户预设的样式。

@Entry
@Component
struct Index {
  controller: RichEditorController = new RichEditorController();
  options: RichEditorOptions = { controller: this.controller };
  build() {
    Column() {
      RichEditor(this.options)
        .onReady(() => {
          this.controller.addTextSpan('点击按钮,改变组件预设样式。', {
            style: {
              fontColor: Color.Black,
              fontSize: 15
            }
          })
        })
        .width(300)
        .height(60)
      Button('setTypingStyle', {
        buttonStyle: ButtonStyleMode.NORMAL
      })
        .height(30)
        .fontSize(13)
        .onClick(() => {
          this.controller.setTypingStyle({
            fontWeight: 'medium',
            fontColor: Color.Pink,
            fontSize: 15,
            fontStyle: FontStyle.Italic,
            decoration: {
              type: TextDecorationType.Underline,
              color: Color.Gray
            }
          })
        })
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-26 17:44:04
相关问题
#鸿蒙学习大百科#什么是用户文件?
156浏览 • 0回复 待解决