TextBoxBase.EndChange メソッド

定義

変更ブロックを終了します。

public:
 void EndChange();
public void EndChange ();
member this.EndChange : unit -> unit
Public Sub EndChange ()

次の例は、 BeginChange メソッドと EndChange メソッドを使用して変更ブロックを作成する方法を示しています。

TextBox myTextBox = new TextBox();

// Begin the change block. Once BeginChange() is called
// no text content or selection change events will be raised 
// until EndChange is called. Also, all edits made within
// a BeginChange/EndChange block are wraped in a single undo block.
myTextBox.BeginChange();

// Put some initial text in the TextBox.
myTextBox.Text = "Initial text in TextBox";

// Make other changes if desired...

// Whenever BeginChange() is called EndChange() must also be
// called to end the change block.
myTextBox.EndChange();
Dim myTextBox As New TextBox()

' Begin the change block. Once BeginChange() is called
' no text content or selection change events will be raised 
' until EndChange is called. Also, all edits made within
' a BeginChange/EndChange block are wraped in a single undo block.
myTextBox.BeginChange()

' Put some initial text in the TextBox.
myTextBox.Text = "Initial text in TextBox"

' Make other changes if desired...

' Whenever BeginChange() is called EndChange() must also be
' called to end the change block.
myTextBox.EndChange()

注釈

注意

を呼び出すときは、 を呼び出BeginChangeEndChangeして変更ブロックを完了する必要もあります。そうしないと、例外がスローされます。

変更ブロックは、複数の変更を 1 つの元に戻す単位に論理的にグループ化し、変更ブロックの後までテキスト コンテンツまたは選択変更イベントが発生しないようにします。 これにより、テキスト要素が別のプロセスによって同時に変更される危険性なしに、テキスト要素に対して複数の編集を行うことができます。 変更ブロックは、 メソッドを呼び出すことによって作成されます DeclareChangeBlock 。 メソッドを BeginChange 呼び出すと、後続のすべての変更は、メソッドの対応する呼び出しが行われるまで、指定された変更ブロックに EndChange 含められます。

適用対象

こちらもご覧ください