Click or drag to resize

BasicNoUIObjPause Property

Gets or sets whether the execution is paused.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public bool Pause { get; set; }

Property Value

Boolean
The execution paused state.

Implements

IBasicNoUIPause
Remarks

2025-01-24: This property has no effect at this time.

Assigning True to the Pause property causes an executing macro/module to stop. Assigning False causes a stopped macro/module to resume execution.

Setting Description
True Execution is paused.
False Execution is not paused.
Example
Pause and resume buttons:
private void pauseButton_Click(object sender, System.EventArgs e)
{
    // pause execution
    basicIdeCtl1.Pause = true;
}
private void resumeButton_Click(object sender, System.EventArgs e)
{
    // resume execution
    basicIdeCtl1.Pause = false;
}
See Also