System.Bluetooth.TBluetoothGattDescriptor.SetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetValue(const AValue: TBytes);

C++

void __fastcall SetValue(const System::DynamicArray<System::Byte> AValue);

Properties

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

Description

Setter of Value. Updates the locally stored value of this descriptor.

SetValue is used as a setter method for Value. The AValue parameter is the descriptor value to update. The expected argument is an Array of Bytes containing the value, see the official page for more information on the bytes structure: GATT Characteristic Descriptors

The SetValue function updates the stored value for this descriptor by calling DoSetValue.

See Also