Which property must you configure in a canvas app to show a specific icon based on the value of a field?
Trap 1: Fill property
Fill controls the background color.
Trap 2: DisplayMode property
DisplayMode controls if the control is clickable or read-only.
Trap 3: Visible property
Visible only toggles showing or hiding the control.
- A
Fill property
Why wrong: Fill controls the background color.
- B
DisplayMode property
Why wrong: DisplayMode controls if the control is clickable or read-only.
- C
Icon property
The Icon property determines which shape is displayed.
- D
Visible property
Why wrong: Visible only toggles showing or hiding the control.