System.Bluetooth.TBluetoothGattCharacteristic.SetValueAsUInt16

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetValueAsUInt16(AValue: UInt16; Offset: Integer = 0);

C++

void __fastcall SetValueAsUInt16(System::Word AValue, int Offset = 0x0);

Properties

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

Description

Sets the Characteristic Value to the AValue supplied as an argument.

SetValueAsUInt16 expects two arguments:

  • AValue: A Word value.
  • Offset: Defines the index value for the array of bytes. The default value for Offset is 0, the first position of the array.

SetValueAsUInt16 calls SetValueAs with the data type, UInt16.

See Also