Método IRealTimeStylus3::p ut_MultiTouchEnabled (rtscom.h)

Indica se o objeto IRealTimeStylus3 tem entrada multitouch habilitada.

Essa propriedade é leitura/gravação.

Sintaxe

HRESULT put_MultiTouchEnabled(
  BOOL fEnable
);

Parâmetros

fEnable

Valor retornado

Nenhum

Comentários

A tabela a seguir lista as opções de aceitação definidas para multitouch.

Nome Descrição Valor
TABLET_ENABLE_MULTITOUCHDATA Indica a aceitação de dados multitouch. 0x01000000
 

Exemplos

O exemplo a seguir demonstra como habilitar o multitouch usando a interface RealTimeStylus3 .


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

O exemplo a seguir mostra como definir explicitamente a propriedade TABLET_ENABLE_MULTITOUCHDATA em uma janela.

    
    //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

Requisito Valor
Cliente mínimo com suporte Windows 7 [somente aplicativos da área de trabalho]
Servidor mínimo com suporte Windows Server 2008 R2 [somente aplicativos da área de trabalho]
Plataforma de Destino Windows
Cabeçalho rtscom.h

Confira também

IRealTimeStylus3