VectorCollection.Item[Int32] 属性

定义

获取或设置指定索引处的 Vector

public:
 property System::Windows::Vector default[int] { System::Windows::Vector get(int index); void set(int index, System::Windows::Vector value); };
public System.Windows.Vector this[int index] { get; set; }
member this.Item(int) : System.Windows.Vector with get, set
Default Public Property Item(index As Integer) As Vector

参数

index
Int32

要获取或设置的 Vector 的从零开始的索引。

属性值

指定索引处的 Vector

实现

例外

valuenull

index 不是 VectorCollection 中的有效索引。

VectorCollection 为只读。

- 或 -

VectorCollection 具有固定的大小。

注解

与 的典型实现IList<T>.Item[]不同,如果尝试插入 null (Nothing) 引用,则此实现将引发 ArgumentException

适用于

另请参阅