ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / StyleHelper Class / SearchLabelPlacements Method
The StyleProjectItem to search.
The StyleItemType to search for. Search for maplex or standard label placement.
The search term.
Example

In This Topic
    SearchLabelPlacements Method
    In This Topic
    Returns a collection of label placement style items that satisfy the search criteria. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax

    Parameters

    styleProjectItem
    The StyleProjectItem to search.
    type
    The StyleItemType to search for. Search for maplex or standard label placement.
    searchString
    The search term.

    Return Value

    A collection of LabelPlacementStyleItem.
    Exceptions
    ExceptionDescription
    This method must be called within the lambda passed to QueuedTask.Run
    Example
    How to search for label placements in a style
    {
        //Search for label placements
        //Note: styleProjectItem was created above in the variable initialization section
        //Note: Needs QueuedTask to run
        styleProjectItem.SearchLabelPlacements(StyleItemType.StandardLabelPlacement, "searchString");
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also