Property RequireResponse
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
RequireResponse
Gets or sets a value indicating whether the dialog box expects some action from the user (e.g. clicking a button, selecting a checkbox, selecting an entry in a selection box, etc.).
public bool RequireResponse { get; set; }
Property Value
- bool
true
if the dialog box expects some action from the user; otherwise,false
.
Examples
UIBuilder uib = new UIBuilder();
// ...
uib.RequireResponse = true;