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

◆ GetSortDescriptions()

ListSortDescriptionCollection System.Data.DataView.GetSortDescriptions ( )
inlinepackageinherited

Definition at line 1030 of file DataView.cs.

1031 {
1033 if (_table != null && _index != null && _index._indexFields.Length != 0)
1034 {
1036 for (int i = 0; i < _index._indexFields.Length; i++)
1037 {
1038 DataColumnPropertyDescriptor property = new DataColumnPropertyDescriptor(_index._indexFields[i].Column);
1040 {
1042 }
1043 else
1044 {
1046 }
1047 }
1048 }
1050 }
readonly IndexField[] _indexFields
Definition Index.cs:34
readonly bool IsDescending
Definition IndexField.cs:9
readonly DataColumn Column
Definition IndexField.cs:7

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