ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Mobile specific functions / Phone functions
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 DeepLinkProcedure
WLanguage procedure ("callback") called by DeepLinkProcedure when the user clicks a deep link with a target URL associated with the application. This procedure must be global.
Example
DeepLinkProcedure (ProcDeepLink)
// ---------------------------------
// Global procedure
// ---------------------------------
PROCEDURE ProcDeepLink(url is URI)
// Gets the product identifier contained in the url
sID is string = ExtractString(url.Query, 2, " = ")
IF sID <> EOT THEN
IF WinStatus(WIN_ProductDetails) <> NotFound THEN
Close(WIN_ProductDetails)
END
OpenMobileWindow(WIN_ProductDetails, sID)
END
Syntax
DeepLinkProcedure_Callback(<URL>)
<URL>: URI variable
URI variable that corresponds to the target of the deep link.
Minimum version required
  • Version 28
Comments
Click [Add] to post a comment

Last update: 03/02/2023

Send a report | Local help