ArcGIS Pro 2.9 API Reference Guide
SearchGrids Method
Example 

ArcGIS.Desktop.Mapping Namespace > StyleHelper Class : SearchGrids Method
The StyleProjectItem to search.
The search term.
Returns a collection of grid 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.
searchString
The search term.

Return Value

A collection of GridStyleItem.
Exceptions
ExceptionDescription
This method must be called within the lambda passed to QueuedTask.Run
Example
public Task<IList<GridStyleItem>> GetGridsFromStyleAsync(StyleProjectItem style, string searchString)
{
  if (style == null)
    throw new System.ArgumentNullException();

  return QueuedTask.Run(() => style.SearchGrids(searchString));
}
Requirements

Target Platforms: Windows 11, Windows 10, Windows 8.1

See Also

Reference

StyleHelper Class
StyleHelper Members