ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / ColorStyleItem Class
Members Example

In This Topic
    ColorStyleItem Class
    In This Topic
    Represents a color saved in a style.
    Object Model
    ColorStyleItem ClassCIMColor Class
    Syntax
    Example
    How to search for colors in a style
    public async Task<IList<ColorStyleItem>> GetColorsFromStyleAsync(StyleProjectItem style, string searchString)
    {
      if (style == null)
        throw new System.ArgumentNullException();
    
      //Search for colors
      return await QueuedTask.Run(() => style.SearchColors(searchString));
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Desktop.Framework.Contracts.PropertyChangedBase
          ArcGIS.Desktop.Mapping.StyleItem
             ArcGIS.Desktop.Mapping.ColorStyleItem

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also