Hi,
ArcGIS Pro 2.8.1, Python either in notebook or IDLE.
I'm trying to create simple tool to list layer properties of any given aprx/mapx. I'm happy enough with retrieving the basic layer properties needed, however I can't seem to find a way of accessing unique symbol scale settings. https://pro.arcgis.com/en/pro-app/latest/help/mapping/layer-properties/scale-based-symbol-classes.htm
I've had a look at the unique value renderer Class but can't see anything jumping out at me. Also thinking of complications where scale-based symbology is set up..
Any ideas much appreciated.
#simple script to get layer scale
import arcpy
aprx = arcpy.mp.ArcGISProject("CURRENT")
m = aprx.listMaps()[0]
for lyr in m.listLayers():
if lyr.supports("dataSource"):
print(lyr.name, lyr.minThreshold, lyr.maxThreshold)