Parameters
- isVisible
- Boolean
Exception | Description |
---|---|
ArcGIS.Core.CalledOnWrongThreadException | This method must be called within the lambda passed to QueuedTask.Run. |
true
displays the element on the page layout.//Modify an element's visibility. //Perform on the worker thread await QueuedTask.Run(() => { element.SetVisible(true); //Turn it on / make visible. });
//Update an element's properties. //Performed on worker thread QueuedTask.Run(() => { // update an element's name element.SetName("New Name"); // update and element's visibility element.SetVisible(true); });
Target Platforms: Windows 11, Windows 10