Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetSortProperty()

PropertyDescriptor System.Data.DataView.GetSortProperty ( )
inlinepackageinherited

Definition at line 908 of file DataView.cs.

909 {
910 if (_table != null && _index != null && _index._indexFields.Length == 1)
911 {
912 return new DataColumnPropertyDescriptor(_index._indexFields[0].Column);
913 }
914 return null;
915 }
readonly IndexField[] _indexFields
Definition Index.cs:34
readonly DataColumn Column
Definition IndexField.cs:7

References System.Data.DataView._index, System.Data.Index._indexFields, System.Data.DataView._table, and System.Data.IndexField.Column.