System.Bluetooth.TBluetoothGattCharacteristic.Properties

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Properties: TBluetoothPropertyFlags read GetProperties;

C++

__property TBluetoothPropertyFlags Properties = {read=GetProperties, nodefault};

Properties

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

Description

Returns the properties of this characteristic.

The properties contain a bit mask of property flags indicating the features of this characteristic.

TBluetoothPropertyFlags is a set of TBluetoothProperty.

The possible values are: Broadcast, ExtendedProps, Notify, Indicate, Read, Write, WriteNoResponse, SignedWrite.

Property Meaning
Broadcast The characteristic is broadcastable.
ExtendedProps The characteristic has extended properties.
Notify The characteristic supports notification.
Indicate The characteristic supports indication.
Read The characteristic is readable.
Write The characteristic can be written.
WriteNoResponse The characteristic can be written without response.
SignedWrite The characteristic supports writing with signature.

See Also