TextBoxBase.EndChange 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
변경 블록을 끝냅니다.
public:
void EndChange();
public void EndChange ();
member this.EndChange : unit -> unit
Public Sub EndChange ()
예제
다음 예에서는 및 EndChange 메서드를 BeginChange 사용하여 변경 블록을 만드는 방법을 보여 줍니다.
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()
설명
참고
를 호출 BeginChange할 때 를 호출 EndChange 하여 변경 블록을 완료해야 합니다. 그렇지 않으면 예외가 throw됩니다.
변경 블록은 논리적으로 여러 변경 내용을 단일 실행 취소 단위로 그룹화하고 변경 블록 이후까지 텍스트 콘텐츠 또는 선택 변경 이벤트가 발생하지 않도록 합니다. 이렇게 하면 텍스트 요소가 다른 프로세스에 의해 동시에 변경될 위험 없이 텍스트 요소를 여러 번 편집할 수 있습니다. 메서드를 호출하여 변경 블록을 만듭니다 DeclareChangeBlock . 메서드를 BeginChange 호출하면 메서드에 대한 해당 호출이 이루어질 때까지 모든 후속 변경 내용이 지정된 변경 블록에 EndChange 포함됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET