Class GravitySensor
Definition
- Assembly:
- Tizen.Sensor.dll
The GravitySensor class is used for registering callbacks for the gravity sensor and getting the gravity data.
public sealed class GravitySensor : Sensor, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View SourceGravitySensor(uint)
Initialize a new instance of the GravitySensor class.
Declaration
public GravitySensor(uint index = 0)
Parameters
Type | Name | Description |
---|---|---|
uint | index | Index refers to a particular gravity sensor in case of multiple sensors. Default value is 0. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when an invalid argument is used. |
System.NotSupportedException | Thrown when the sensor is not supported. |
System.InvalidOperationException | Thrown when the operation is invalid for the current state. |
Properties
View SourceCount
Return the number of gravity sensors available on the system.
Declaration
public static int Count { get; }
Property Value
Type | Description |
---|---|
int | The count of gravity sensors. |
IsSupported
Return true or false based on whether the gravity sensor is supported by the system.
Declaration
public static bool IsSupported { get; }
Property Value
Type | Description |
---|---|
bool |
|
X
Get the X component value of the gravity sensor as float type.
Declaration
public float X { get; }
Property Value
Type | Description |
---|---|
float | X |
Y
Get the Y component value of the gravity sensor as float type.
Declaration
public float Y { get; }
Property Value
Type | Description |
---|---|
float | Y |
Z
Get the Z component value of the gravity sensor as float type.
Declaration
public float Z { get; }
Property Value
Type | Description |
---|---|
float | Z |
Events
View SourceAccuracyChanged
An event handler for the event of accuracy change. If an event is added, a new accuracy change callback is registered for this sensor. If an event is removed, accuracy change callback is unregistered for this sensor.
Declaration
public event EventHandler<SensorAccuracyChangedEventArgs> AccuracyChanged
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><SensorAccuracyChangedEventArgs> |
DataUpdated
An event handler for storing the callback functions for the event corresponding to the change in the gravity sensor data.
Declaration
public event EventHandler<GravitySensorDataUpdatedEventArgs> DataUpdated
Event Type
Type | Description |
---|---|
System.EventHandler<TEventArgs><GravitySensorDataUpdatedEventArgs> |