New to Telerik UI for WPFStart a free 30-day trial

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:

C#
protected sealed class QueryableCollectionView.CurrencyRefreshInfo

Inheritance: objectQueryableCollectionView.CurrencyRefreshInfo

Constructors

Initializes a new instance of the QueryableCollectionView.CurrencyRefreshInfo class.

C#
public CurrencyRefreshInfo(bool oldIsCurrentAfterLast, bool oldIsCurrentBeforeFirst, int oldCurrentPosition, object oldCurrentItem)
Parameters:oldIsCurrentAfterLastbool

The old IsCurrentAfterLast.

oldIsCurrentBeforeFirstbool

The old IsCurrentBeforeFirst.

oldCurrentPositionint

The old current position.

oldCurrentItemobject

The old current item.

Properties

OldCurrentItem.

C#
public object OldCurrentItem { get; }

OldCurrentPosition.

C#
public int OldCurrentPosition { get; }

OldIsCurrentAfterLast.

C#
public bool OldIsCurrentAfterLast { get; }

OldIsCurrentBeforeFirst.

C#
public bool OldIsCurrentBeforeFirst { get; }