Return Value
Returns a Boolean
Exception | Description |
---|---|
ArcGIS.Core.CalledOnWrongThreadException | This method must be called within the lambda passed to QueuedTask.Run. |
true
if an element has maintain aspect ratio enabled.//Modify an element's aspect ratio. //Perform on the worker thread await QueuedTask.Run(() => { bool elmLocked = element.GetLockedAspectRatio(); elmLocked = false; //Turn off the locked state. element.SetLockedAspectRatio(elmLocked); //You don't have to get to set; a shortcut would be: element.SetLockedAspectRatio(false); });
Target Platforms: Windows 11, Windows 10