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.{
//Update an element's properties.
//Note: Must be on QueuedTask.Run
//Find a single specific element
element = layout.FindElement("Rectangle") as Element;
// update an element's name
element.SetName("New Name");
// update and element's visibility
element.SetVisible(true);
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)