Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
3 replies
Subscribers
7 subscribers
Views
3211 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
Can I insert "carriage return" in a text variable ? If can, how do I d
yati.rohmat
over 10 years ago
Can I insert "carriage return" in a text variable ? If can, how do I do it?...
OriginalPostID-106291
OriginalPostID-106291
Discussion posts and replies are publicly visible
0
Stefan Helzle
A Score Level 3
over 10 years ago
You can use the char() function to add special characters to strings. Check an ASCII table for the numbers. The one you want is 10. So char(10) is what look for.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
venkats533
over 10 years ago
both char(10) and char(13) do work, in the the sample code below, the list view will have four lines instead of two lines
= rule!APN_listViewTemplate(
title: rf!building_text & " - " & rf!suite_text,
details: "Leader Name: " & rf!leaderName_text & char(13) & "Current Status: " & rf!status_text,
image: rule!getLocationImage(rf!buildingId_int)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
yati.rohmat
over 10 years ago
Yes. It is working. Thank you.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel