System.Bluetooth.TBluetoothGattCharacteristic.SetValueAsUInt64
Delphi
procedure SetValueAsUInt64(AValue: UInt64; Offset: Integer = 0);
C++
void __fastcall SetValueAsUInt64(unsigned __int64 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.
SetValueAsUInt64 expects two arguments:
AValue
: A UInt64 value.Offset
: Defines the index value for the array of bytes. The default value forOffset
is0
, the first position of the array.
SetValueAsUInt64 calls SetValueAs with the data type, UInt64
.