IBindableVectorView.Size Property

Definition

Gets the number of items in the vector.

public:
 property unsigned int Size { unsigned int get(); };
uint32_t Size();
public uint Size { get; }
var uInt32 = iBindableVectorView.size;
Public ReadOnly Property Size As UInteger

Property Value

UInt32

unsigned int

uint32_t

The number of items in the vector.

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