In a Visualforce page, you’ve embedded a flow that includes three screens. Screen 1 is configured to show the Pause button. Screens 2 and 3 are configured to not show the Pause button.
Let Users Pause Flows (Process Automation setting) |
allowShowPause (Visualforce component) |
Result Pause button |
---|---|---|
Enabled | true or not set | Pause button appears only on the first screen |
Enabled | false | Pause button doesn’t appear for any screens in this Visualforce page |
Not enabled | true or not set | Pause button doesn’t appear for any screens |
<apex:page> <flow:interview name="MyUniqueFlow" allowShowPause="false" /> </apex:page>