接口 ITextRange


public interface ITextRange
代表com.grapecity.documents.excel.IShape中的文本框。
  • 方法详细资料

    • getText

      String getText()
      获取一个代表文本范围内文本的字符串值。
    • setText

      void setText(String value)
      设置一个代表文本范围内文本的字符串值。
    • getFont

      IFontFormat getFont()
      返回代表IFontFormat对象字符格式的IFontFormat对象。
    • getParagraphs

      ITextRange getParagraphs()
      获取ITextRange的段落。

      此方法仅在TextRangeType.Body中使用;否则,它会抛出InvalidOperateExecption异常。

    • getRuns

      ITextRange getRuns()
      获取ITextRange的运行

      此方法仅在TextRangeType.Paragraph中使用;否则,它会抛出InvalidOperateExecption异常。

    • get

      ITextRange get(int index)
      获取指定索引的ITextRange
      参数:
      index - 索引。ITextRange
    • getCount

      int getCount()
      返回集合中的对象数量。
    • getIndex

      int getIndex()
      返回集合中的索引。
    • getTextAlignment

      TextAlignmentAnchor getTextAlignment()
      获取文本的水平对齐方式。
    • setTextAlignment

      void setTextAlignment(TextAlignmentAnchor textAlignment)
      设置文本的水平对齐方式。
    • getType

      TextRangeType getType()
      返回 ITextRange 的类型。
    • add

      ITextRange add(String newText)
      向指定的集合中添加文本。
      参数:
      newText - 新文本。
      返回:
      新的 ITextRange。此属性仅在Body和Paragraph中使用。在Body上使用此属性,它将添加一个带有运行段的段落。在Paragraph上使用此属性,它将添加一个运行。
    • add

      ITextRange add()
      向指定的集合中添加文本。
    • add

      ITextRange add(String newText, int position)
      向指定的集合中添加文本。
      参数:
      newText - 新文本。
      position - 您想要插入的位置。
      返回:
      新的ITextRange。此属性仅在正文和段落中使用。在正文中使用此属性,它将添加一个带有运行符的段落。在段落中使用此属性,它将添加一个运行符。
    • delete

      void delete()
      从父级删除。