In a text component I "calculate" a value with multiple conditions:
Code: Select all
{(IIF(Sowing.Ve == 0, "",
IIF(Sowing.Ve == 5, "Ves",
IIF(Sowing.Ve == 10, "Ve", ""))).ToString()
+ etc...
}
What is the property to get this value?
I tried StiText.Text but it's not working.
I can't find something that fits in the documentation.
Thanks!