Method HideUI
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
HideUI()
Hides a custom-made dialog box of an interactive Automation script.
void HideUI()
Examples
// Build and display a form
var formUi = BuildFormUi();
var results = engine.ShowUI(formUi);
// Process UI results
// Hide the UI before starting a lengthy operation
engine.HideUI();
// Build and display issue information
var issueUi = BuildIssueUi();
var issueResults = engine.ShowUI(issueUi);
Exceptions
- InteractiveUserDetachedException
The interactive client was detached.
- DataMinerException
Hide UI failed.