A label color is defined as Default in the designer.
The code turns it into (e.g.) Label.TextColor = Colors.red.
How to bring the color back to Default by code without selecting any other color?
Thanks in advance.
lbl1.Tag=lbl1.Background 'initially set to default , stored color in tag
lbl1.Color=Colors.Red 'then later play around with colors
lbl1.Background=lbl1.Tag 'when you want to go back to default setting issue this code