GetLockedAspectRatio Method (Element)
Gets the locked aspect ratio value of the element. If This method must be called on the MCT. Use QueuedTask.Run.
Element_GetSetLockedAspectRatio
//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
ArcGIS Pro version: 3 or higher.