ITextRange.EndPosition Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the end character position of the text range.
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
Property Value
int
The end character position.
Remarks
A text range object remains valid when the text is edited, but a character position is volatile. That is, a character position becomes invalid when text is inserted or deleted before the character position. Be careful when using character positions, especially if you store them for a significant length of time.