Class Accelerometer

    Definition

    Namespace:
    Tizen.Sensor
    Assembly:
    Tizen.Sensor.dll

    The Accelerometer Sensor class is used for registering callbacks for the accelerometer and getting the accelerometer data.

    public sealed class Accelerometer : Sensor
    Inheritance
    object
    Sensor
    Accelerometer

    Constructors

    View Source

    Accelerometer(uint)

    Initializes a new instance of the Accelerometer class.

    Declaration
    public Accelerometer(uint index = null)
    Parameters
    Type Name Description
    uint index

    Index. Default value for this is 0. Index refers to a particular accelerometer sensor in case of multiple sensors.

    Properties

    View Source

    Count

    Return the number of accelerometer sensors available by the system.

    Declaration
    public static int Count { get; }
    Property Value
    Type Description
    int

    The count of accelerometer sensors.

    View Source

    IsSupported

    Return true or false based on whether accelerometer sensor is supported by the system.

    Declaration
    public static bool IsSupported { get; }
    Property Value
    Type Description
    bool

    true if supported; otherwise false.

    View Source

    X

    Get the X component value of acceleration from the accelerometer sensor.

    Declaration
    public float X { get; }
    Property Value
    Type Description
    float

    X

    View Source

    Y

    Get the Y component value of acceleration from the accelerometer sensor.

    Declaration
    public float Y { get; }
    Property Value
    Type Description
    float

    Y

    View Source

    Z

    Get the Z component value of acceleration from the accelerometer sensor.

    Declaration
    public float Z { get; }
    Property Value
    Type Description
    float

    Z

    Events

    View Source

    DataUpdated

    An event handler for storing the callback functions for the event corresponding to the change in the accelerometer sensor data.

    Declaration
    public event EventHandler<AccelerometerDataUpdatedEventArgs> DataUpdated
    Event Type
    Type Description
    EventHandler<><AccelerometerDataUpdatedEventArgs>

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX