ITextRange.EndPosition 属性

定义

获取或设置文本范围的结束字符位置。

public:
 property int EndPosition { int get(); void set(int value); };
int EndPosition();

void EndPosition(int value);
public int EndPosition { get; set; }
var int32 = iTextRange.endPosition;
iTextRange.endPosition = int32;
Public Property EndPosition As Integer

属性值

Int32

int

结束字符位置。

注解

编辑文本时,文本范围对象保持有效,但字符位置不稳定。 也就是说,在字符位置之前插入或删除文本时,字符位置将变为无效。 使用字符位置时要小心,尤其是在存储较长时间的情况下。

适用于