Highlighter.HighlightIdentifier
static function HighlightIdentifier(position: Rect, identifier: string): void;
static void HighlightIdentifier(Rect position, string identifier);
static def HighlightIdentifier(position as Rect, identifier as string) as void
Parameters

position The position to make highlightable.
identifier The identifier text of the rect.
Description

Call this method to create an identifiable rect that the Highlighter can find.

If you want a custom rect in an EditorWindow or custom Editor to be highlightable, you can call this method to specify the rect and the identifier text for that rect. That will make it possible for the Highlighter to highlight the rect.