System.Bluetooth.TBluetoothDeviceState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBluetoothDeviceState = (None, Paired, Connected);

C++

enum class DECLSPEC_DENUM TBluetoothDeviceState : unsigned char { None, Paired, Connected };

Properties

Type Visibility Source Unit Parent
enum public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth System.Bluetooth

Description

Current state of a remote device.

Possible values are:

Value Description

Connected

The remote device is currently connected to the device that is running your application.

Paired

The remote device is paired with the device that is running your application.

None

The remote device is in neither of the states above.

See Also