System.Beacon.TBeaconManager.UnregisterBeacon

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function UnregisterBeacon(const AGUID: TGUID): Boolean; overload;
function UnregisterBeacon(const AGUID: TGUID; AMajor: Word): Boolean; overload;
function UnregisterBeacon(const AGUID: TGUID; AMajor, AMinor: Word): Boolean; overload;

C++

bool __fastcall UnregisterBeacon(const GUID &AGUID)/* overload */;
bool __fastcall UnregisterBeacon(const GUID &AGUID, System::Word AMajor)/* overload */;
bool __fastcall UnregisterBeacon(const GUID &AGUID, System::Word AMajor, System::Word AMinor)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.Beacon.pas
System.Beacon.hpp
System.Beacon TBeaconManager

Description

Unregisters regions specified by AGUID, AMajor or AMinor.

The UnregisterBeacon method unregisters regions specified by AGUID, AMajor or AMinor. Three different overloaded methods may be used for unregistering regions.

With the first method, all the AMajor and AMinor beacons using the AGUID are unregisterd. With the second method, all the AMinor beacons related to the specified AGUID and AMajor are unregistered. With the third method, only the beacon specified with AGUID, AMajor and AMinor is unregistered.

See Also