How do I write an if statement that when true, runs two actions?
if (NumericField1.rawValue > 0)
{
xfa.resolveNode("#pageSet.Page1.Image1").presence = "visible" + Rectangle1.presence = "visible";
}
How do I write an if statement that when true, runs two actions?
if (NumericField1.rawValue > 0)
{
xfa.resolveNode("#pageSet.Page1.Image1").presence = "visible" + Rectangle1.presence = "visible";
}