ResourceMapMapViewIterator
ResourceMapMapViewIterator
ResourceMapMapViewIterator
ResourceMapMapViewIterator
Class
Definition
Supports iteration over a ResourceMapMapView object.
public : sealed class ResourceMapMapViewIterator : IIteratorpublic sealed class ResourceMapMapViewIterator : IIteratorPublic NotInheritable Class ResourceMapMapViewIterator Implements IIterator// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
Current Current Current Current
Gets the current item in the ResourceMapMapView.
public : IKeyValuePair<string, ResourceMap> Current { get; }public KeyValuePair<string, ResourceMap> Current { get; }Public ReadOnly Property Current As KeyValuePair<string, ResourceMap>// You can use this property in JavaScript.
- Value
- IKeyValuePair<PlatForm::String, ResourceMap> KeyValuePair<string, ResourceMap> KeyValuePair<string, ResourceMap> KeyValuePair<string, ResourceMap>
The key and ResourceMap key-value pair for the current item.
HasCurrent HasCurrent HasCurrent HasCurrent
Gets a value that indicates whether there is a current item, or whether the iterator is at the end of the ResourceMapMapView.
public : PlatForm::Boolean HasCurrent { get; }public bool HasCurrent { get; }Public ReadOnly Property HasCurrent As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
TRUE if the iterator refers to a valid item that is in the map view, and otherwise FALSE.
Methods
GetMany(IKeyValuePair[])
GetMany(IKeyValuePair[])
GetMany(IKeyValuePair[])
GetMany(IKeyValuePair[])
Returns all the items in the ResourceMapMapView.
public : unsigned int GetMany(IKeyValuePair<PlatForm::String, ResourceMap> items)public uint GetMany(KeyValuePair<String, ResourceMap>[] items)Public Function GetMany(items As KeyValuePair<String, ResourceMap>[]) As uint// You can use this method in JavaScript.
Parameters
- items
- IKeyValuePair<PlatForm::String, ResourceMap> KeyValuePair<String, ResourceMap>[] KeyValuePair<String, ResourceMap>[] KeyValuePair<String, ResourceMap>[]
The items in the map view.
Returns
unsigned int
uint
uint
uint
The number of items in the map view.
MoveNext() MoveNext() MoveNext() MoveNext()
Moves the iterator forward to the next item and returns HasCurrent.
public : PlatForm::Boolean MoveNext()public bool MoveNext()Public Function MoveNext() As bool// You can use this method in JavaScript.
Returns
PlatForm::Boolean
bool
bool
bool
TRUE if the iterator refers to a valid item that is in the map view, and otherwise FALSE.