mmgiath
12-08-2015
if value of a numeric field is smaller than zero then I need the font colour to became red.
Thank you
Magus069
MVP
if (NumericField1.rawValue < 0){
NumericField1.font.fill.color.value = "255,0,6";
}