QueryOptions.SortOrder Property

Definition

Gets the list of SortEntry structures that specify how to sort content (like files and subfolders) in query results. Use this list to customize how query results are sorted.

public:
 property IVector<SortEntry> ^ SortOrder { IVector<SortEntry> ^ get(); };
IVector<SortEntry> SortOrder();
public IList<SortEntry> SortOrder { get; }
var iVector = queryOptions.sortOrder;
Public ReadOnly Property SortOrder As IList(Of SortEntry)

Property Value

A SortEntryVector that contains SortEntry structures. These structures specify how to sort query results.

Remarks

If the folder being queried is not in a library or in the HomeGroup folder, SortOrder only supports entries based on the System.ItemNameDisplay (PKEY_ItemNameDisplay), System.Search.Rank (PKEY_Search_Rank), or System.DateModified (PKEY_DateModified) properties; SortOrder entries based on any other properties will return E_INVALIDARG.

Applies to

See also