다음을 통해 공유


CoreTextEditContext.SelectionUpdating 이벤트

정의

텍스트 입력 서버가 텍스트 입력 컨트롤에서 현재 선택된 텍스트 범위를 수정해야 할 때 발생합니다. 이 이벤트는 일부 텍스트를 선택하거나 캐리트를 이동해야 하는 입력 프로세서의 결과일 수 있습니다. 텍스트 입력 컨트롤은 그에 따라 선택 범위를 설정해야 합니다.

// Register
event_token SelectionUpdating(TypedEventHandler<CoreTextEditContext, CoreTextSelectionUpdatingEventArgs const&> const& handler) const;

// Revoke with event_token
void SelectionUpdating(event_token const* cookie) const;

// Revoke with event_revoker
CoreTextEditContext::SelectionUpdating_revoker SelectionUpdating(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextSelectionUpdatingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextSelectionUpdatingEventArgs> SelectionUpdating;
function onSelectionUpdating(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("selectionupdating", onSelectionUpdating);
coreTextEditContext.removeEventListener("selectionupdating", onSelectionUpdating);
- or -
coreTextEditContext.onselectionupdating = onSelectionUpdating;
Public Custom Event SelectionUpdating As TypedEventHandler(Of CoreTextEditContext, CoreTextSelectionUpdatingEventArgs) 

이벤트 유형

적용 대상