Metodo IRealTimeStylus::GetTabletFromTabletContextId (rtscom.h)
Recupera un'interfaccia IInkTablet per un contesto di tablet specificato.
Sintassi
HRESULT GetTabletFromTabletContextId(
[in] TABLET_CONTEXT_ID tcid,
[out, retval] IInkTablet **ppiTablet
);
Parametri
[in] tcid
Specifica l'identificatore univoco per il contesto del tablet.
[out, retval] ppiTablet
Puntatore all'oggetto digitalizzatore specificato dall'identificatore di contesto del tablet.
Valore restituito
Per una descrizione dei valori restituiti, vedere Classi e interfacce RealTimeStylus.
Commenti
Un identificatore di contesto tablet è specifico di un oggetto Classe RealTimeStylus . Due oggetti Classe RealTimeStylus possono avere identificatori di contesto diversi per lo stesso oggetto tablet. Un identificatore di contesto tablet è valido solo quando è abilitato un oggetto Classe RealTimeStylus . Se un oggetto Classe RealTimeStylus è disabilitato e quindi riabilitata, l'identificatore di contesto tablet per ogni oggetto tablet può avere un valore diverso rispetto a quando l'oggetto Classe RealTimeStylus è stato abilitato per la prima volta.
Questo metodo può essere chiamato anche se la proprietà IRealTimeStylus::Enabled restituisce false fino a quando il metodo IStylusPlugin::RealTimeStylusDisabled non ha completato l'elaborazione dei dati nella coda. Questo metodo può essere chiamato fino all'ultimo plug-in asincrono riceve IStylusPlugin::RealTimeStylusDisabled Metodo.
Esempio
Il codice di esempio C++ seguente usa l'identificatore di contesto del tablet per ottenere un puntatore all'oggetto 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);
}
}
Requisiti
Client minimo supportato | Windows XP Tablet PC Edition [solo app desktop] |
Server minimo supportato | Nessuno supportato |
Piattaforma di destinazione | Windows |
Intestazione | rtscom.h |
DLL | RTSCom.dll |
Vedi anche
Metodo IRealTimeStylus::GetTabletContextIdFromTablet
Classe RealTimeStylus