System.Beacon.TBeaconInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TBeaconInfo = record
    GUID: TGUID;
    Major: Word;
    Minor: Word;
    BeaconType: Word;
    TxPower: Integer;
    AdditionalData: TBytes;
  end;

C++

struct DECLSPEC_DRECORD TBeaconInfo
{
public:
    GUID GUID;
    System::Word Major;
    System::Word Minor;
    System::Word BeaconType;
    int TxPower;
#ifndef _WIN64
    System::DynamicArray<System::Byte> AdditionalData;
#else /* _WIN64 */
    System::TArray__1<System::Byte> AdditionalData;
#endif /* _WIN64 */
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Beacon.pas
System.Beacon.hpp
System.Beacon System.Beacon

Description

The TBeaconInfo record type holds the parsed information received from the beacon.

See Also