TapReading QML Type

The TapReading element holds the most recent TapSensor reading. 更多...

import 語句: import QtSensors 5.15
Since: QtSensors 5.0
繼承:

SensorReading

特性

詳細描述

The TapReading element holds the most recent TapSensor reading.

此元素包裹 QTapReading 類。請參閱文檔編製 QTapReading 瞭解細節。

This element cannot be directly created.

特性文檔編製

doubleTap : bool

This property holds a value indicating if there was a single or double tap.

Please see QTapReading::doubleTap for information about this property.

tapDirection : TapDirection

This property holds the direction of the tap.

Please see QTapReading::tapDirection for information about this property.

Note that TapDirection constants are exposed through the TapReading 類。

 TapSensor {
     onReadingChanged: {
         if ((reading.tapDirection & TapReading.X_Both))
             // do something
     }
 }