ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Bluetooth
  • Limitation
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Allows you to find out whether a Bluetooth radio is visible.
Note: A Bluetooth radio corresponds to a Bluetooth transmitter.. This transmitter can correspond to a Bluetooth USB key or it can be an element included in a computer (laptop for example).
Example
Reports and QueriesWindows
bVisible is boolean
// Identifiant des radios Bluetooth listés dans un champ Table
nIdRadio is int 
nIdRadio = TABLE_Radios.COL_ID[TABLE_Radios]
// Teste si la radio sélectionnée est visible
bVisible = BTIsVisible(nIdRadio)
// Affichage 
IF bVisible = True THEN
	Trace("Visible")
ELSE 
	Trace("Non visible")
END
// Changement de la visibilité
BTChangeVisibility(nIdRadio, NOT bVisible)
Syntax
Reports and QueriesWindows

Syntax that can be used in Windows Hide the details

<Result> = BTIsVisible(<Radio identifier>)
<Result>: Boolean
  • True if the Bluetooth radio is visible,
  • False otherwise.
<Radio identifier>: Integer
Identifier of Bluetooth radio to use. This identifier is returned by BTListRadio.
Remarks
Windows

Limitation

Only the Microsoft Bluetooth stack is supported by this function. To know the stack used, call BTStack.
For more details, see Which stacks to use?
Component: wd300com.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/25/2025

Send a report | Local help