Compartir a través de


Método IRealTimeStylus3::get_MultiTouchEnabled (rtscom.h)

Indica si el objeto IRealTimeStylus3 tiene habilitada la entrada multitouch.

Esta propiedad es de lectura y escritura.

Sintaxis

HRESULT get_MultiTouchEnabled(
  BOOL *pfEnable
);

Parámetros

pfEnable

Valor devuelto

Ninguno

Observaciones

En la tabla siguiente se enumeran las opciones de participación definidas para multitouch.

Nombre Descripción Valor
TABLET_ENABLE_MULTITOUCHDATA Indica la participación en los datos multitáctil. 0x01000000
 

Ejemplos

En el ejemplo siguiente se muestra cómo habilitar multitouch mediante la interfaz RealTimeStylus3 .


CComQIPtr<IRealTimeStylus3> spRealTimeStylus3 = g_spRealTimeStylus;
if(spRealTimeStylus3 == NULL)
{
    return FALSE;
}
HRESULT hr = spRealTimeStylus3->put_MultiTouchEnabled(TRUE);
if(FAILED(hr))
{
    return FALSE;
}

En el ejemplo siguiente se muestra cómo establecer explícitamente la propiedad TABLET_ENABLE_MULTITOUCHDATA en una ventana.

    
    //Set the window property
    ATOM m_atom = ::GlobalAddAtom(MICROSOFT_TABLETPENSERVICE_PROPERTY);
    m_dwProperty = TABLET_ENABLE_MULTITOUCHDATA;
    ::SetProp(m_hwnd, (LPTSTR)m_atomPenService, (HANDLE)m_dwProperty);
     
    //A Window Property takes effect on the down action of the 1st finger.

    //process the LRESULT from WinProc:

    //A custom LRESULT CALLBACK
    GestureTest::WindowProcedure(      
      HWND hwnd,
      UINT uMsg,
      WPARAM wParam,
      LPARAM lParam)
    {
    case WM_TABLET_QUERYSYSTEMGESTURESTATUS:
        return TABLET_ENABLE_MULTITOUCHDATA;
    }    

Requisitos

   
Cliente mínimo compatible Windows 7 [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2008 R2 [solo aplicaciones de escritorio]
Plataforma de destino Windows
Encabezado rtscom.h

Consulte también

IRealTimeStylus3