OrderedList (PQL)

Returns markup text to numerically order bulleted text

  • 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

OrderedList( <Text N> )

* 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, provided as a list of items.
Different Function types

Also see UnorderedList and Bullet.

Examples

This example returns the following resulting "unordered" bulleted text:

OrderedList( "This is a test 1", "This is a test 2", "This is a test 3" )

  1. This is a test 1
  2. This is a test 2
  3. This is a test 3