ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Reports Namespace / ReportView Class / SelectElements Method
A list of existing report elements. If null then all elements are unselected.
Example

In This Topic
    SelectElements Method (ReportView)
    In This Topic
    Set the selected report elements for the report view.
    Syntax
    public void SelectElements( 
       IReadOnlyList<Element> elements
    )
    Public Sub SelectElements( _
       ByVal elements As IReadOnlyList(Of Element) _
    ) 

    Parameters

    elements
    A list of existing report elements. If null then all elements are unselected.
    Remarks
    If a child of a group element is provided in the list of elements to be selected in addition to its parent then the parent is the element selected. In addition if multiple section elements are in the list of elements, then only the first section element is selected.
    Example
    Select elements
    //ReportDetailsSection contains the "Fields"
    
    var elements = reportDetailsSection.Elements;
    reportDetailsSection.SelectElements(elements);
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also