Version: 2022.1
LanguageEnglish
  • C#

SearchAction Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public SearchAction(string providerId, string id, GUIContent content);

Declaration

public SearchAction(string providerId, string id, GUIContent content, Action<SearchItem[]> handler);

Declaration

public SearchAction(string providerId, string id, GUIContent content, Action<SearchItem> handler);

Declaration

public SearchAction(string providerId, string name, Texture2D icon, string tooltip, Action<SearchItem[]> handler);

Declaration

public SearchAction(string providerId, string name, Texture2D icon, string tooltip, Action<SearchItem> handler);

Declaration

public SearchAction(string providerId, string name, Texture2D icon, string tooltip);

Parameters

id Unique action id used to find it back later.
providerId The search provider ID that supports this action.
content Displays the displayname, an icon, and a tooltip when displaying the action in the Action Menu.
handler Handler that executes the action.
name Label name when displaying the action in the Action Menu.
icon Icon for the action in the Action Menu.
tooltip Tooltip associated with the action when displayed in the Action Menu.

Description

Default constructor to build a search action.