System.Bluetooth.TBluetoothGattCharacteristic.DoSetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoSetValue(const AValue: TBytes); virtual; abstract;

C++

virtual void __fastcall DoSetValue(const System::DynamicArray<System::Byte> AValue) = 0 ;

Properties

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

Description

Note: This is an abstract method that platform-specific subclasses of TBluetoothGattCharacteristic implement.

Setter of Value. Updates the value for this characteristic.

DoSetValue is used as a setter method for Value. The AValue parameter is the characteristic 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: Standard BluetoothLE Characteristics

SetValue calls DoSetValue.

Platform Support

Platform Bluetooth Low Energy
Client Server

Windows

8+

OS X

10.7+

10.9+

iOS

5+

6+

Android

4.3+

See Also