The Map series object represents a means to create multi-page PDF or
based off of fields in the index layer.
MapSeries_GetSetDefinition
//Get and modify a map series CIM definition and set the changes back to the layout
//Perform on the worker thread
await QueuedTask.Run(() =>
{
MapSeries MS = layout.MapSeries as MapSeries;
CIMMapSeries CIM_MS = MS.GetDefinition();
CIM_MS.Enabled = false;
MS.SetDefinition(CIM_MS);
layout.SetMapSeries(MS);
});
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3 or higher.