PathSegmentCollection.Insert(Int32, PathSegment) 方法

定义

PathSegment 插入到此 PathSegmentCollection 的指定索引位置。

public:
 virtual void Insert(int index, System::Windows::Media::PathSegment ^ value);
public void Insert (int index, System.Windows.Media.PathSegment value);
abstract member Insert : int * System.Windows.Media.PathSegment -> unit
override this.Insert : int * System.Windows.Media.PathSegment -> unit
Public Sub Insert (index As Integer, value As PathSegment)

参数

index
Int32

要在其中插入 value(指定的 PathSegment)的索引位置。

value
PathSegment

要插入的项。

实现

例外

valuenull

index 不是 PathSegmentCollection 中的有效索引。

PathSegmentCollection 为只读。

注解

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

适用于

另请参阅