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