接口 ITextRange
public interface ITextRange
代表
com.grapecity.documents.excel.IShape
中的文本框。-
方法概要
修饰符和类型方法说明add()
向指定的集合中添加文本。向指定的集合中添加文本。向指定的集合中添加文本。void
delete()
从父级删除。get
(int index) 获取指定索引的ITextRange
。int
getCount()
返回集合中的对象数量。getFont()
返回代表IFontFormat
对象字符格式的IFontFormat
对象。int
getIndex()
返回集合中的索引。获取ITextRange
的段落。getRuns()
获取ITextRange
的运行getText()
获取一个代表文本范围内文本的字符串值。获取文本的水平对齐方式。getType()
返回ITextRange
的类型。void
设置一个代表文本范围内文本的字符串值。void
setTextAlignment
(TextAlignmentAnchor textAlignment) 设置文本的水平对齐方式。
-
方法详细资料
-
getText
String getText()获取一个代表文本范围内文本的字符串值。 -
setText
设置一个代表文本范围内文本的字符串值。 -
getFont
IFontFormat getFont()返回代表IFontFormat
对象字符格式的IFontFormat
对象。 -
getParagraphs
ITextRange getParagraphs()获取ITextRange
的段落。此方法仅在
TextRangeType
.Body中使用;否则,它会抛出InvalidOperateExecption异常。 -
getRuns
ITextRange getRuns()获取ITextRange
的运行此方法仅在
TextRangeType
.Paragraph中使用;否则,它会抛出InvalidOperateExecption异常。 -
get
获取指定索引的ITextRange
。- 参数:
index
- 索引。ITextRange
-
getCount
int getCount()返回集合中的对象数量。 -
getIndex
int getIndex()返回集合中的索引。 -
getTextAlignment
TextAlignmentAnchor getTextAlignment()获取文本的水平对齐方式。 -
setTextAlignment
设置文本的水平对齐方式。 -
getType
TextRangeType getType()返回ITextRange
的类型。 -
add
向指定的集合中添加文本。- 参数:
newText
- 新文本。- 返回:
- 新的
ITextRange
。此属性仅在Body和Paragraph中使用。在Body上使用此属性,它将添加一个带有运行段的段落。在Paragraph上使用此属性,它将添加一个运行。
-
add
ITextRange add()向指定的集合中添加文本。 -
add
向指定的集合中添加文本。- 参数:
newText
- 新文本。position
- 您想要插入的位置。- 返回:
- 新的
ITextRange
。此属性仅在正文和段落中使用。在正文中使用此属性,它将添加一个带有运行符的段落。在段落中使用此属性,它将添加一个运行符。
-
delete
void delete()从父级删除。
-