接口 ITextRun


public interface ITextRun
表示IRichText对象中的一系列字符。
  • 方法详细资料

    • getFont

      IFont getFont()
      获取当前文本行的字体设置。
    • getText

      String getText()
      获取当前文本运行中的文本。
      返回:
      当前文本运行的文本内容。
    • setText

      void setText(String text)
      设置当前文本运行中的文本。
    • delete

      void delete()
      删除此 ITextRun 从其父级 IRichText 对象中。
    • insertBefore

      ITextRun insertBefore(String text)
      在当前文本运行前插入一个新的 ITextRun
      参数:
      text - 新插入运行中的文本。
      返回:
      新创建的文本运行。
    • insertAfter

      ITextRun insertAfter(String text)
      在当前文本运行后插入一个新的 ITextRun
      参数:
      text - 新插入运行的内容。
      返回:
      新创建的文本运行。