There will be the opportunity to create from code 20 labels, all with different properties Color and TextColor ?
The end result should be 20 label as different as possible between them visually.
This using Colors.RGB (r, g, b)
Something like
Thanks in advance
The end result should be 20 label as different as possible between them visually.
This using Colors.RGB (r, g, b)
Something like
B4X:
For i = 1 to 20
Label (i).Color = Colors.RGB (a,b,c)
Label (i).TextColor = Colors.RGB (x,y,z)
next
Thanks in advance