PathSegmentCollection.Item[Int32] 属性

定义

获取或设置从零开始的指定索引处的 PathSegment

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

参数

index
Int32

要获取或设置的 PathSegment 对象的从零开始的索引。

属性值

指定索引处的项。

实现

例外

valuenull

index 不是 PathSegmentCollection 中的有效索引。

PathSegmentCollection 为只读。

- 或 -

PathSegmentCollection 具有固定的大小。

注解

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

适用于

另请参阅