System.Bluetooth.TBluetoothManager.DoDiscoverableEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoDiscoverableEnd(const Sender: TObject); virtual;

C++

virtual void __fastcall DoDiscoverableEnd(System::TObject* const Sender);

Properties

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

Description

Dispatcher of the OnDiscoverableEnd event.

When you call StartDiscoverable, you start a request to make the device that is running your application discoverable via Bluetooth. If the user of your application accepts your request, your manager calls DoDiscoverableEnd.

This event dispatcher receives a single parameter, Sender, which is the adapter of your manager.

DoDiscoverableEnd triggers the OnDiscoverableEnd event.

Platform Support

Platform Supported Notes

32-bit Windows
64-bit Windows

YesC++11Feature.png

OS X

  • Users must actively choose to make the device that is running your application discoverable. You cannot request to make the device discoverable from your application using StartDiscoverable.

Android

YesC++11Feature.png

See Also