다음을 통해 공유


IRealTimeStylus::GetTabletFromTabletContextId 메서드(rtscom.h)

지정된 태블릿 컨텍스트에 대한 IInkTablet 인터페이스 를 검색합니다.

구문

HRESULT GetTabletFromTabletContextId(
  [in]          TABLET_CONTEXT_ID tcid,
  [out, retval] IInkTablet        **ppiTablet
);

매개 변수

[in] tcid

태블릿 컨텍스트의 고유 식별자를 지정합니다.

[out, retval] ppiTablet

태블릿 컨텍스트 식별자로 지정된 디지타이저 개체에 대한 포인터입니다.

반환 값

반환 값에 대한 설명은 RealTimeStylus 클래스 및 인터페이스를 참조하세요.

설명

태블릿 컨텍스트 식별자는 RealTimeStylus 클래스 개체와 관련이 있습니다. 두 RealTimeStylus 클래스 개체는 동일한 태블릿 개체에 대해 서로 다른 컨텍스트 식별자를 가질 수 있습니다. 태블릿 컨텍스트 식별자는 RealTimeStylus 클래스 개체를 사용하는 동안에만 유효합니다. RealTimeStylus Class 개체를 사용하지 않도록 설정한 다음 다시 사용하도록 설정한 경우 각 태블릿 개체의 태블릿 컨텍스트 식별자는 RealTimeStylus Class 개체를 처음 사용하도록 설정한 경우와 다른 값을 가질 수 있습니다.

IStylusPlugin::RealTimeStylusDisabled 메서드가 큐에서 데이터 처리를 완료하지 않은 한 IRealTimeStylus::Enabled 속성false를 반환하는 경우에도 이 메서드를 호출할 수 있습니다. 마지막 비동기 플러그 인이 IStylusPlugin::RealTimeStylusDisabled 메서드를 받을 때까지 이 메서드를 호출할 수 있습니다.

예제

다음 C++ 예제 코드는 태블릿 컨텍스트 식별자를 사용하여 IInkTablet Interface 개체에 대한 포인터를 가져옵니다.

TABLET_CONTEXT_ID* pTcids = NULL;
TABLET_CONTEXT_ID tcid = 0;
ULONG ulTcidCount = 0;
IInkTablet* pInkTablet = NULL;

if (SUCCEEDED(g_pRealTimeStylus->GetAllTabletContextIds(&ulTcidCount, &pTcids)))
{
    TRACE("Got the tablet context ID array.\n");

    // Loop through all the tablets on the system
    for (ULONG i = 0; i < ulTcidCount; i++)
    {
        // Get the tablet from the context ID
        if (SUCCEEDED(g_pRealTimeStylus->GetTabletFromTabletContextId(pTcids[i], &pInkTablet)))
        {
            // Display the name of the tablet in debug output
            BSTR bstrName;
            if (SUCCEEDED(pInkTablet->get_Name(&bstrName)))
            {
                TRACE("The name of tablet %d is %s.\n", i, bstrName);
            }
        }
    }

    // Get the context ID from the tablet
    if (SUCCEEDED(g_pRealTimeStylus->GetTabletContextIdFromTablet(pInkTablet, &tcid)))
    {
        TRACE("The context ID of the tablet is %d\n", tcid);
    }
}

요구 사항

   
지원되는 최소 클라이언트 Windows XP 태블릿 PC 버전 [데스크톱 앱만 해당]
지원되는 최소 서버 지원되는 버전 없음
대상 플랫폼 Windows
헤더 rtscom.h
DLL RTSCom.dll

추가 정보

IRealTimeStylus

IRealTimeStylus::GetTabletContextIdFromTablet 메서드

RealTimeStylus 클래스