LightingExplorerTableColumnConstructor

切换到手册
public LightingExplorerTableColumn (LightingExplorerTableColumn.DataType type, GUIContent headerContent, string propertyName, int width, LightingExplorerTableColumn.OnGUIDelegate onGUIDelegate, LightingExplorerTableColumn.ComparePropertiesDelegate compareDelegate, LightingExplorerTableColumn.CopyPropertiesDelegate copyDelegate, int[] dependencyIndices);

参数

type根据我们使用的 LightingExplorer.DataType,将使用内置的 compare 和 draw 方法。如果希望完全重载此参数,请使用 LightingExplorer.DataType.Custom。
headerContent列标题的名称。
propertyName要使用的对象属性的名称。如果使用 LightingExplorer.DataType.Name,请选择“null”。
width列的宽度。最小宽度为此值除以 2。默认值为 100。
onGUIDelegate如果要以不同于默认方式的方式绘制属性,请提供此委托。如果使用 LightingExprlorer.DataType.Custom,必须覆盖此参数。
compareDelegate如果要以不同于默认方式的方式对属性排序,请提供此委托。如果使用 LightingExplorer.DataType.Custom,必须覆盖此参数。
copyDelegate如果要以不同于默认方式的方式复制属性,请提供此委托。
dependencyIndices如果需要依赖于另一个 Serialized 属性而不是列中的相应属性,请使用此字段指定要包含的索引。队列为索引 0。

描述

构造函数。