Defines origins for the indexed page view.

Namespace:  Rebex.Net
Assembly:  Rebex.Ews (in Rebex.Ews.dll)

Syntax

Visual Basic
Public Enumeration EwsIndexOrigin
C#
public enum EwsIndexOrigin

Members

Member nameDescription
Supported by the .NET Compact FrameworkBeginning
Offset is taken from the beginning.
Supported by the .NET Compact FrameworkEnd
Offset is taken from the end. So, index 0 represents the last item. Counting the items goes from the specified offset to the smaller positions.
  • Example 1: items {A,B,C,D,E}; page {0,3,Beginning}; result {A,B,C}.
  • Example 2: items {A,B,C,D,E}; page {0,3,End}; result {C,D,E}.
  • Example 3: items {A,B,C,D,E}; page {2,3,End}; result {A,B,C}.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also