System.Bluetooth.TBluetoothManager.GetPairedDevices

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetPairedDevices(const AnAdapter: TBluetoothAdapter): TBluetoothDeviceList; overload;
function GetPairedDevices: TBluetoothDeviceList; overload;

C++

TBluetoothDeviceList* __fastcall GetPairedDevices(TBluetoothAdapter* const AnAdapter)/* overload */;
TBluetoothDeviceList* __fastcall GetPairedDevices()/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothManager

Description

Returns the list of remote devices that are paired to the device that is running your application.

If you do not pass GetPairedDevices any parameter, GetPairedDevices returns the list of paired remote devices of its adapter. If you pass GetPairedDevices an instance of TBluetoothAdapter, GetPairedDevices returns the list of paired remote devices of that adapter.

See Also