PopupSelectPausedStateDlg Method
- Last UpdatedNov 06, 2025
- 1 minute read
The PopupSelectPausesStateDlg() method opens the dialog for selecting in which paused state to put the job. The three paused states are Suspended, OnHold, and New.
'Declaration
Public Shared Function PopupSelectPausedStateDlg( _
ByRef newJobState As JobStates, _
ByRef newJobStateDesc As String _
) As Boolean
public static bool PopupSelectPausedStateDlg(
ref JobStates newJobState,
ref string newJobStateDesc
)
Parameters
- newJobState
- Required. Output. Holds the paused state that is selected to be the new job state of the job.
- newJobStateDesc
- Required. Output. Holds the description of the job state that is selected to be the new paused job state of the job.
Return Value
Returns true if a paused state is selected from the dialog. Returns false if the
dialog is canceled without selecting a paused state.