Reverses specified sorter. Descending order is used. Note: REVERSE only reverses a single criterion, and does not affect the implicit "sequence number" sort criterion if all other criteria are identical. Consequently, a sort of REVERSE SUBJECT is not the same as a reverse ordering of a SUBJECT sort. This can be avoided by use of additional criteria, e.g., SUBJECT DATE vs. REVERSE SUBJECT REVERSE DATE. In general, however, it's better (and faster, if the client has a "reverse current ordering" command) to reverse the results in the client instead of issuing a new SORT.

Namespace: Limilabs.Client.IMAP
Assembly: Mail (in Mail.dll) Version: 3.0.12102.1426

Syntax

C#
public static ISorter Reverse(
	ISorter sorter
)
Visual Basic
Public Shared Function Reverse ( _
	sorter As ISorter _
) As ISorter
Visual C++
public:
static ISorter^ Reverse(
	ISorter^ sorter
)

Parameters

sorter
Type: Limilabs.Client.IMAP..::..ISorter

[Missing <param name="sorter"/> documentation for "M:Limilabs.Client.IMAP.SortBy.Reverse(Limilabs.Client.IMAP.ISorter)"]

Return Value

New sorter.

See Also