Parameters
- height
- Double
Exception | Description |
---|---|
ArcGIS.Core.CalledOnWrongThreadException | This method must be called within the lambda passed to QueuedTask.Run. |
System.InvalidOperationException | This element requires its mapview to be active |
//Modify an element's hieght. //Perform on the worker thread await QueuedTask.Run(() => { double elmHeight = element.GetHeight(); elmHeight = 11; element.SetHeight(elmHeight); //You don't have to get to set; a shortcut would be: element.SetHieght(11); });
Target Platforms: Windows 10, Windows 8.1