Metodo IRealTimeStylus::SetSingleTabletMode (rtscom.h)
Modifica la modalità per l'oggetto RealTimeStylus Class (RTS) per raccogliere l'input da un solo oggetto tablet che rappresenta un digitalizzatore collegato al Tablet PC. L'input dello stilo da altri digitalizzatori viene ignorato da RealTimeStylus.
Sintassi
HRESULT SetSingleTabletMode(
[in] IInkTablet *piTablet
);
Parametri
[in] piTablet
Oggetto IInkTablet Interface che rappresenta il dispositivo digitalizzatore collegato al Tablet PC.
Valore restituito
Per una descrizione dei valori restituiti, vedere Classi e interfacce RealTimeStylus.
Commenti
Una classe RealTimeStylus può essere impostata su una delle due modalità correlate ai tablet:
- Modalità Tutti i tablet (impostazione predefinita)
- Modalità tablet singolo
Esempio
Il codice di esempio C++ seguente imposta un oggetto IRealTimeStylus su g_pRealTimeStylus
modalità tablet singolo in modo che possa ottenere il tablet e recuperare il relativo identificatore plug-and-play. Imposta quindi l'oggetto IRealTimeStylus su tutte le modalità tablet.
// Must be in single tablet mode for GetTablet to succeed. This call to
// SetSingleTabletMode() would likely happen somewhere else in the app.
if (SUCCEEDED(g_pRealTimeStylus->SetSingleTabletMode(pInkTablet)))
{
IInkTablet* pTablet = NULL;
if ((SUCCEEDED(g_pRealTimeStylus->GetTablet(&pTablet))) && (NULL != pTablet))
{
BSTR bstrPnPID;
if (SUCCEEDED(pTablet->get_PlugAndPlayId(&bstrPnPID)))
{
TRACE("The tablet's Plug-n-Play ID is: %s\n", bstrPnPID);
}
}
// Restore all tablets mode.
g_pRealTimeStylus->SetAllTabletsMode(TRUE);
}
Requisiti
Requisito | Valore |
---|---|
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 |