次の方法で共有


CoreTextEditContext.NotifyTextChanged メソッド

定義

テキスト入力コントロールがテキストに対して行う必要がある変更について、テキスト入力サーバーに通知します。 これは、コントロールの内部状態とサーバーの内部状態の同期を維持するために重要です。 テキストの変更も選択範囲に影響を与える可能性があるため、メソッドは選択範囲をパラメーターとして受け取ります。

public:
 virtual void NotifyTextChanged(CoreTextRange modifiedRange, int newLength, CoreTextRange newSelection) = NotifyTextChanged;
void NotifyTextChanged(CoreTextRange const& modifiedRange, int const& newLength, CoreTextRange const& newSelection);
public void NotifyTextChanged(CoreTextRange modifiedRange, int newLength, CoreTextRange newSelection);
function notifyTextChanged(modifiedRange, newLength, newSelection)
Public Sub NotifyTextChanged (modifiedRange As CoreTextRange, newLength As Integer, newSelection As CoreTextRange)

パラメーター

modifiedRange
CoreTextRange

このテキストが変更される前のテキスト バッファーの状態に関して、置き換えるテキストの範囲。

newLength
Int32

int

modifiedRange を置き換えるテキストの長さ。

newSelection
CoreTextRange

テキスト変更後に有効な選択範囲。

適用対象