共用方式為


msctf.h (iTfContextOwnerCompositionServices 介面)

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 專業版 [傳統型應用程式 |UWP 應用程式]
最低支援的伺服器 Windows 2000 Server [傳統型應用程式 |UWP 應用程式]
目標平台 Windows
標頭 msctf.h
可轉散發套件 Windows 2000 專業版上的 TSF 1.0

另請參閱

編輯內容

ITfContext

ITfContextComposition