다음을 통해 공유


ITfContextOwnerCompositionServices 인터페이스(msctf.h)

ITfContextOwnerCompositionServices 인터페이스는 TSF 관리자에 의해 구현되며 컨텍스트 소유자가 텍스트 서비스에서 만든 컴퍼지션을 조작하는 데 사용됩니다.

상속

ITfContextOwnerCompositionServices 인터페이스는ITfContextComposition 인터페이스에서 상속됩니다. ITfContextOwnerCompositionServices 에는 다음과 같은 유형의 멤버도 있습니다.

메서드

ITfContextOwnerCompositionServices 인터페이스에는 이러한 메서드가 있습니다.

 
ITfContextOwnerCompositionServices::TerminateComposition

ITfContextOwnerCompositionServices::TerminateComposition 메서드

설명

일반적으로 애플리케이션은 컨텍스트를 만들고 컨텍스트 소유자입니다. 경우에 따라 텍스트 서비스가 컨텍스트를 만듭니다. 이 경우 텍스트 서비스는 컨텍스트 소유자입니다. 자세한 내용은 컨텍스트 편집을 참조하세요.

IID_ITfContextOwnerCompositionServices ITfContext::QueryInterface 를 호출하여 이 인터페이스를 가져옵니다.

예제

ITfContext


HRESULT hr;
ITfContextOwnerCompositionServices *pCompServices;

//Get the ITfContextOwnerCompositionServices interface pointer. 
hr = m_pContext->QueryInterface(IID_ITfContextOwnerCompositionServices, (LPVOID*)&pCompServices);
if(SUCCEEDED(hr))
{
    //Use the interface. 

    //Release the interface. 
    pCompServices->Release();
}

요구 사항

요구 사항
지원되는 최소 클라이언트 Windows 2000 Professional [데스크톱 앱 | UWP 앱]
지원되는 최소 서버 Windows 2000 Server [데스크톱 앱 | UWP 앱]
대상 플랫폼 Windows
헤더 msctf.h
재배포 가능 파일 Windows 2000 Professional의 TSF 1.0

추가 정보

컨텍스트 편집

ITfContext

ITfContextComposition