Android Question Label Control or Other Similar to Display Help Text Files with CHR(13) Formatting

Azhar

Active Member
Licensed User
Longtime User
Hi All

I'm using a large label control in a panel to display help files for the user to read. I would like to format each page with some carriage returns CHR(13) for easy reading. As I can't do this with a standard label control Eg. lblHelp.Text = "This is one line" & CHR(13) & "and this is the other line"

What other control can I use?

Thanks,
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
    Label1.Text = $"Text bla line 1${Chr(13)}${Chr(10)}Line 2${Chr(13)}${Chr(10)}Line 3"$
 

Attachments

  • Multilinelabel.zip
    14.1 KB · Views: 237
Upvote 0
Top