PathFigureCollection.Item[Int32] 属性

定义

获取或设置指定索引位置处的 PathFigure

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

参数

index
Int32

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

属性值

PathFigure

指定索引处的 PathFigure

实现

例外

valuenull

index 不是 PathFigureCollection 中的有效索引。

PathFigureCollection 为只读。

注解

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

适用于

另请参阅