Class AutoRotationSensor

Definition

Namespace:
Tizen.Sensor
Assembly:
Tizen.Sensor.dll
API Level:
7

The AutoRotationSensor class is used for registering callbacks for the auto-rotation sensor and getting the auto-rotation data.

C#
Copy
public sealed class AutoRotationSensor : Sensor
Inheritance
AutoRotationSensor

Constructors

View Source

AutoRotationSensor(UInt32)

Initializes a new instance of the AutoRotationSensor class.

Declaration
C#
Copy
public AutoRotationSensor(uint index = null)
Parameters
Type Name Description
UInt32 index

Index. The default value of this is 0. Index refers to a specific auto-rotation sensor in case of multiple sensors.

API Level: 7
Feature: http://tizen.org/feature/screen.auto_rotation

Properties

View Source

Accuracy

Gets the accuracy of the auto-rotation data.

Declaration
C#
Copy
public SensorDataAccuracy Accuracy { get; }
Property Value
Type Description
SensorDataAccuracy

Accuracy

API Level: 7
View Source

IsSupported

Returns true or false based on whether the auto-rotation sensor is supported by the device.

Declaration
C#
Copy
public static bool IsSupported { get; }
Property Value
Type Description
Boolean

true if supported; otherwise false.

API Level: 7
View Source

Rotation

Gets the value of the rotation state.

Declaration
C#
Copy
public AutoRotationState Rotation { get; }
Property Value
Type Description
AutoRotationState

The rotation state.

API Level: 7

Events

View Source

AccuracyChanged

An event handler for accuracy changed events.

Declaration
C#
Copy
public event EventHandler<SensorAccuracyChangedEventArgs> AccuracyChanged
Event Type
Type Description
EventHandler<SensorAccuracyChangedEventArgs>
API Level: 7
View Source

DataUpdated

An event handler for storing the callback functions for the event corresponding to the change in the auto-rotation sensor data.

Declaration
C#
Copy
public event EventHandler<AutoRotationSensorDataUpdatedEventArgs> DataUpdated
Event Type
Type Description
EventHandler<AutoRotationSensorDataUpdatedEventArgs>
API Level: 7

Extension Methods