iOS Question Table AddRow with CRLF

tcgoh

Active Member
Licensed User
Longtime User
Hi,

I don't seem to be able to add a text with CRLF in a cell.


B4X:
 For i = 0 To 100
 Table1.AddRow(Array As String("Row: " & i, "ccc", "ddd" & CRLF & "DDD", "eee"))
 Next

Even if I go to the table class module to add on
Sub CreateNewLabels As Label()
l.Multiline = true

Does anyone have this problem? or I'm missing something.

Thanks
 
Top