I have a map template with header bar with a text element on top of it. I'm producing multiple maps and I want the header bar (drawn rectangle) to change color based on the type of map.
The drawn rectangle at the top of the map is not associated with any layers, but it has a element tag, so I should be able to call it out in Python and define what fill color I want it to be.
Does anyone know if this is possible?
For use in ArcMap 10.5. After some research, this is the closest I can materialize. The last line would be something like "elm.change color to something"
for elm in arcpy.mapping.ListLayoutElements(mxd, "MAPSURROUND_ELEMENT"):
if elm.name == "Box":
elm.???