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

終了文字の位置。

注釈

テキスト範囲オブジェクトは、テキストを編集しても有効なままですが、文字位置は揮発性です。 つまり、文字位置の前にテキストを挿入または削除すると、文字位置が無効になります。 文字位置を使用する場合は、特に長時間保存する場合は注意してください。

適用対象