IBindableIterator.HasCurrent Property

Definition

Gets a value that indicates whether there is a current item or the iterator is at the end of the collection.

public:
 property bool HasCurrent { bool get(); };
bool HasCurrent();
public bool HasCurrent { get; }
var boolean = iBindableIterator.hasCurrent;
Public ReadOnly Property HasCurrent As Boolean

Property Value

Boolean

bool

true if the iterator refers to a valid item that is in the collection; otherwise, false.

Remarks

This interface supports the creation of data bindable collections in C++. When programming with .NET, you should use ObservableCollection(Of T) or implement IList and INotifyCollectionChanged.

Applies to

See also