IBindableVector.SetAt(UInt32, Object) Method

Definition

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.

Applies to

See also