ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Reports Namespace / ReportSectionElement Class / SelectAllElements Method
Example

In This Topic
    SelectAllElements Method (ReportSectionElement)
    In This Topic
    Select all report elements in the report section.
    Syntax
    public virtual void SelectAllElements()
    Public Overridable Sub SelectAllElements() 
    Example
    Select all elements
    //Select all elements in the Report Footer.
    ReportPageFooter pageFooterSection = report.Elements.OfType<ReportSection>().FirstOrDefault().Elements.OfType<ReportPageFooter>().FirstOrDefault();
    pageFooterSection.SelectAllElements();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also