CConnectionPoint::GetNextConnection
擷取指標連接項目在 pos。
LPUNKNOWN GetNextConnection(
POSITION& pos
) const;
參數
- pos
指定與前一個 GetNextConnection 或 GetStartPosition 呼叫傳回的 位置 值的參考。
傳回值
為指定的 pos連接項目的指標則為 null。
備註
這個函式會逐一查看最有用通過所有項目在連接對應。當反覆查看時,請略過此函式傳回所有 NULLs。
範例
void CMyClass::CallSinkFunc()
{
POSITION pos = m_xSampleConnPt.GetStartPosition();
ISampleSink* pSampleSink;
while( pos != NULL )
{
pSampleSink = (ISampleSink*)(m_xSampleConnPt.GetNextConnection(pos));
if(pSampleSink != NULL)
pSampleSink->SinkFunc();
}
}
需求
Header: afxdisp.h