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.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
protected sealed class CurrencyRefreshInfo : Object
Constructors
CurrencyRefreshInfo(Boolean, Boolean, Int32, Object)
Initializes a new instance of the QueryableCollectionView.CurrencyRefreshInfo class.
Declaration
public CurrencyRefreshInfo(bool oldIsCurrentAfterLast, bool oldIsCurrentBeforeFirst, int oldCurrentPosition, object oldCurrentItem)
Parameters
System.Boolean
oldIsCurrentAfterLast
The old IsCurrentAfterLast. |
System.Boolean
oldIsCurrentBeforeFirst
The old IsCurrentBeforeFirst. |
System.Int32
oldCurrentPosition
The old current position. |
System.Object
oldCurrentItem
The old current item. |
Properties
OldCurrentItem
OldCurrentItem.
Declaration
public object OldCurrentItem { get; }
Property Value
System.Object
|
OldCurrentPosition
OldCurrentPosition.
Declaration
public int OldCurrentPosition { get; }
Property Value
System.Int32
|
OldIsCurrentAfterLast
OldIsCurrentAfterLast.
Declaration
public bool OldIsCurrentAfterLast { get; }
Property Value
System.Boolean
|
OldIsCurrentBeforeFirst
OldIsCurrentBeforeFirst.
Declaration
public bool OldIsCurrentBeforeFirst { get; }
Property Value
System.Boolean
|