ArcGIS Pro 3.5 API Reference Guide
ArcGIS.Desktop.Presentations Namespace / PresentationPage Class / CopyElements Method / CopyElements(IEnumerable<Element>) Method
The elements to be copied

In This Topic
    CopyElements(IEnumerable<Element>) Method
    In This Topic
    Copy the elements into the presentation page. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Overloads Function CopyElements( _
       ByVal elements As IEnumerable(Of Element) _
    ) As IReadOnlyList(Of Element)

    Parameters

    elements
    The elements to be copied

    Return Value

    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    elements must belong to a valid presentation page
    Remarks
    Only elements from one presentation page can be copied at one time. To copy elements from multiple presentation pages, CopyElements must be called each time.
    If a group element is provided in the list of elements to be copied then the group element and all its children will be copied.
    If a child of a group element is provided in the list in addition to its parent then the parent takes precedence (i.e. the entire group element is copied and not just that child).
    If a child element of a group element is provided in the list but its parent is not then only the child element is copied. The parent of the copied element will become the target group element.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also