ArcGIS Pro 2.8 API Reference Guide
MapSeriesExportOptions Constructor
Example 

ArcGIS.Desktop.Layouts Namespace > MapSeriesExportOptions Class : MapSeriesExportOptions Constructor
Creates a collection of export options specific to exporting a map series.
Syntax
public MapSeriesExportOptions()
Public Function New()
Example
//Set up map series export options

MapSeriesExportOptions MSExport_SinglePage = new MapSeriesExportOptions()
{
  ExportPages = ExportPages.Custom,  //Provide a specific list of pages
  CustomPages = "1-3, 5",  //Only used if ExportPages.Custom is set
  ExportFileOptions = ExportFileOptions.ExportAsSinglePDF,  //Export all pages to a single, multi-page PDF
  ShowSelectedSymbology = false  //Do no show selection symbology in the output
};
//Set up map series export options

MapSeriesExportOptions MSExport_IndivPages = new MapSeriesExportOptions()
{
  ExportPages = ExportPages.All,  //All pages
  ExportFileOptions = ExportFileOptions.ExportMultipleNames,  //Export each page to an individual file using page name as a suffix.
  ShowSelectedSymbology = true  //Include selection symbology in the output
};
Requirements

Target Platforms: Windows 10, Windows 8.1

See Also

Reference

MapSeriesExportOptions Class
MapSeriesExportOptions Members