I am able to get a list of all maps in a project (Project.Current.GetItems<MapProjectItem>()) and display a number of properties, like name, layers, spatial reference, etc. One thing I cannot seem to access is the current scale for each of these maps (MapProjectItem).
I would like to retrieve the scale for all of my maps in my project. I know you can retrieve the scale for an active map (MapView.Active.Camera.Scale), but how do I get the scale for a map that is not active? Can I retrieve the scale from each map without making it the active map in my project?