Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SearchTable

Creates a new search table configuration.
Read time 1 minuteLast updated 10 days ago

Definition

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

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

name

Name of the table.

Set of initial columns.

SearchTable(SearchTable, string)

Creates a new search table configuration.
public SearchTable(SearchTable other, string newName = null)

Parameters

Table setup to copy columns from.

newName

New name of the table if copied from an initial table configuration.