System.Bluetooth.TBluetoothGattCharacteristic.GetValueAsString

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

function GetValueAsString(Offset: Integer = 0; IsUTF8: Boolean = True): string;

C++

System::UnicodeString __fastcall GetValueAsString(int Offset = 0x0, bool IsUTF8 = true);

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
function public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothGattCharacteristic


Beschreibung

Gibt den Wert (Value) des Merkmals als String zurück.

GetValueAsString erwartet zwei Argumente:

  • Offset: Der Indexwert für das Byte-Array. Der Standardwert für Offset ist 0, die erste Position des Arrays.
  • IsUTF8: Ein boolesches Argument:
    • True: Das Ergebnis ist in UTF8 codiert.
    • False: Das Ergebnis ist in Unicode codiert.

Siehe auch