AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Bluetooth / Procedimiento WLanguage
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
WLanguage procedure called by BTStatus
Procedure ("Callback") called by BTStatus when the Bluetooth activation status changes on the device. This procedure can be a local, global or internal procedure.
Example
BTStatus(ChangeBT)
 
INTERNAL PROCEDURE ChangeBT(NewStatus, FormerStatus)
IF NewStatus <> FormerStatus THEN ToastDisplay("Bluetooth connection changed")
END
Syntax
BTStatus_Callback(<New status> , <Former status>)
<New status>: Integer constant
New Bluetooth activation status on the device. This status corresponds to one of the following constants:
btActivationInProgressThe Bluetooth is being enabled on the device.
btDeactivationInProgressThe Bluetooth is being disabled on the device.
btDisabledThe Bluetooth is disabled on the device.
btEnabledThe Bluetooth is enabled on the device.
<Former status>: Integer constant
Bluetooth activation status on the device before the change. This status corresponds to one of the following constants:
btActivationInProgressThe Bluetooth is being enabled on the device.
btDeactivationInProgressThe Bluetooth is being disabled on the device.
btDisabledThe Bluetooth is disabled on the device.
btEnabledThe Bluetooth is enabled on the device.
Versión mínima requerida
  • Versión 16
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local