Bug
| Bug-ID-Nummer | BUG-000147574 |
|---|---|
| Eingereicht | March 14, 2022 |
| Zuletzt geändert | June 5, 2024 |
| Gilt für | ArcGIS Pro |
| Gefunden in Version | 2.8.4 |
| Betriebssystem | Windows OS |
| Betriebssystemversion | 11.0 64 bit |
| Status | Fixed |
Export the page range via ArcPy (Python) instead.
Use the following code to export:
##Export Page Range Map Series to PDF
aprx = arcpy.mp.ArcGISProject("CURRENT")
lyt = aprx.listLayouts()[0]
ms = lyt.mapSeries
start = time.time()
ms.exportToPDF(f"C:\Temp\{lyt.name}.pdf", "RANGE", "1-10", resolution=300)
end = time.time()
print(f"{lyt.name} exported in {end - start} seconds")
print("Done")
Bug-ID: BUG-000147574
Software:
Unterstützung durch ArcGIS-Experten anfordern
Esri Support App herunterladen