Enabled vs Visible Control Attributes

I’m wondering what happens when you have a default value set for a control and you set the following:

  • Will a value be used when enabled is false?

  • Will a value be used when visible is false?

Thanks,

Bill
Stack-Its

The enabled and visible settings on properties only apply to the UI controls within the inspector. The value of the property is always accessible from the template.

  • Visible will hide the control when the expression is false.
  • Enabled will disable the control when the expression is false.

Note: Visible should work for all controls, enabled isn’t fully implemented yet - so some control will stay active when expression is false.