ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV, WEBDEV and WINDEV Mobile 2024 feature!
Help / WLanguage / WLanguage functions / Standard functions / String 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
Adds a clickable link in a Markdown string. This makes it possible to add a link in a control that supports Markdown format.
Example
sLink is string = MarkdownLink("Details", ProcDisplayQuote,"25471")
STC_MD = "Click " + sLink + " to view quote # **25471**"
sLink is string = MarkdownLink("WINDEV website", "http://www.windev.com")
STC_MD = "See " + sLien + " for more details"
Syntax

Generating a clickable link to execute a WLanguage procedure Hide the details

<Result> = MarkdownLink(<Text> , <WLanguage procedure> [, <Procedure parameter>])
<Result>: Character string
Link value. This value can be concatenated to another string. This string is valid only in the current window.
<Text>: Character string
Text to display in the link.
<WLanguage procedure>: Procedure name
Name of the WLanguage procedure ("callback") called when the link is clicked.
<Procedure parameter>: Expected type (optional)
Value of the parameter that will be passed to the procedure.

Generating a clickable link to open an external URL Hide the details

<Result> = MarkdownLink(<Text> , <URL to display>)
<Result>: Character string
Link value. This value can be concatenated to another string. This string is valid only in the current window.
<Text>: Character string
Text to display in the link.
<URL to display>: Character string
External URL to open when link is clicked.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/08/2024

Send a report | Local help