Underline (PQL)
                                    Returns markup text to make the supplied text underlined
- Returned Output: Text
 - Library: PQL \ Dynamic \ Markup
 - Version: 2020.10.000
 - Compatibility: Any content (regardless of data source) in the relevant parts of the application
 
Syntax
Underline( <Text> )
                                    
                                    * Click on the function's arguments above for more details on the input values.
Comments
- Use this function to mark-up dynamically created text programmatically. Alternatively, you can format the entire dynamic text result in the host text box.
 - The text can be any static or formula driven text element.
 
Examples
This example returns the following resulting text: "This is a test"
"This is a " + Underline("test")
This example takes the value from the first cell and makes it both underlined and bold.
Underline(Bold(data(0,0)))