Thanks for all your support.
Can I hide a stopped element in Surveyor?
Stopping and starting an element is done in automation.
or
Hide Stopping Element at specific users,
Stop/Start can be done with administrative privileges.
In case you would like to hide elements programmatically, you could use the class library included in DIS.
For example:
using Skyline.DataMiner.Automation;
using Skyline.DataMiner.Library.Automation;
using Skyline.DataMiner.Library.Common;
/// <summary>
/// DataMiner Script Class.
/// </summary>
class Script
{
public void Run(Engine engine)
{
IDms thisDms = engine.GetDms();
var element = thisDms.GetElement("myElementName");
element.AdvancedSettings.IsHidden = true;
element.Update();
}
}