Class
QueryableCollectionView.CurrencyRefreshInfo

Used to hold "old" currency info when DataLoadMode is Asynchronous and we need to refresh the currency after the load is complete. This class is not supposed to be used directly from your code.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

cs-api-definition
protected sealed class QueryableCollectionView.CurrencyRefreshInfo

Inheritance: objectQueryableCollectionView.CurrencyRefreshInfo

Constructors

CurrencyRefreshInfo(bool, bool, int, object)

Initializes a new instance of the QueryableCollectionView.CurrencyRefreshInfo class.

Declaration

cs-api-definition
public CurrencyRefreshInfo(bool oldIsCurrentAfterLast, bool oldIsCurrentBeforeFirst, int oldCurrentPosition, object oldCurrentItem)

Parameters

oldIsCurrentAfterLast

bool

The old IsCurrentAfterLast.

oldIsCurrentBeforeFirst

bool

The old IsCurrentBeforeFirst.

oldCurrentPosition

int

The old current position.

oldCurrentItem

object

The old current item.

Properties

OldCurrentItem

OldCurrentItem.

Declaration

cs-api-definition
public object OldCurrentItem { get; }

Property Value

object

OldCurrentPosition

OldCurrentPosition.

Declaration

cs-api-definition
public int OldCurrentPosition { get; }

Property Value

int

OldIsCurrentAfterLast

OldIsCurrentAfterLast.

Declaration

cs-api-definition
public bool OldIsCurrentAfterLast { get; }

Property Value

bool

OldIsCurrentBeforeFirst

OldIsCurrentBeforeFirst.

Declaration

cs-api-definition
public bool OldIsCurrentBeforeFirst { get; }

Property Value

bool