System.Bluetooth.TBluetoothScanMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBluetoothScanMode = (None, Connectable, Discoverable);

C++

enum class DECLSPEC_DENUM TBluetoothScanMode : unsigned char { None, Connectable, Discoverable };

Properties

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

Description

Scan mode of a Classic Bluetooth adapter.

Possible values are:

Mode Description

Discoverable

Remote devices can discover the device that is running your application using Bluetooth.

Connectable

Remote devices cannot discover the device that is running your application using Bluetooth.
Remove devices can, however, connect to the device that is running your application using Bluetooth if they have the necessary connection data.

None

Your adapter is in none of the scan modes described above.

See Also