Parameters
- width
- 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 width. //Perform on the worker thread await QueuedTask.Run(() => { double elmWidth = element.GetWidth(); elmWidth = 8.5; element.SetWidth(elmWidth); //You don't have to get to set; a shortcut would be: element.SetWidth(8.5); });
Target Platforms: Windows 10, Windows 8.1