다음을 통해 공유


CoreTextEditContext.LayoutRequested 이벤트

정의

텍스트 입력 서버가 텍스트 범위와 텍스트 입력 컨트롤 자체의 경계 상자를 가져와야 할 때 발생합니다. 애플리케이션은 이 이벤트를 처리하고 요청된 기하 도형 정보를 반환해야 합니다.

// Register
event_token LayoutRequested(TypedEventHandler<CoreTextEditContext, CoreTextLayoutRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreTextEditContext::LayoutRequested_revoker LayoutRequested(auto_revoke_t, TypedEventHandler<CoreTextEditContext, CoreTextLayoutRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,CoreTextLayoutRequestedEventArgs> LayoutRequested;
function onLayoutRequested(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("layoutrequested", onLayoutRequested);
coreTextEditContext.removeEventListener("layoutrequested", onLayoutRequested);
- or -
coreTextEditContext.onlayoutrequested = onLayoutRequested;
Public Custom Event LayoutRequested As TypedEventHandler(Of CoreTextEditContext, CoreTextLayoutRequestedEventArgs) 

이벤트 유형

적용 대상