IBindableVector.SetAt(UInt32, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the item value at the specified index of the vector.
public:
void SetAt(unsigned int index, Platform::Object ^ value);
void SetAt(uint32_t const& index, IInspectable const& value);
public void SetAt(uint index, object value);
function setAt(index, value)
Public Sub SetAt (index As UInteger, value As Object)
Parameters
- index
-
UInt32
unsigned int
uint32_t
The zero-based index of the vector, at which to set the value.
- value
-
Object
Platform::Object
IInspectable
The item value to set.
Remarks
When programming with .NET, this interface is hidden and developers should use the System.Collections.IList interface.