SearchTable
Creates a new search table configuration.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Constructor
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
SearchTable(string, string, IEnumerable<SearchColumn>)
Creates a new search table configuration.
public SearchTable(string id, string name, IEnumerable<SearchColumn> columnModels)
Parameters
Unique id, usually a GUID.
Name of the table.
Set of initial columns.
SearchTable(string, IEnumerable<SearchColumn>)
Creates a new search table configuration.
public SearchTable(string name, IEnumerable<SearchColumn> columnModels)
Parameters
SearchTable(SearchTable, string)
Creates a new search table configuration.
public SearchTable(SearchTable other, string newName = null)
Parameters
Table setup to copy columns from.
New name of the table if copied from an initial table configuration.