PathSegmentCollection.Insert(Int32, PathSegment) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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
要插入的项。
实现
例外
value
为 null
。
index
不是 PathSegmentCollection 中的有效索引。
注解
与典型的实现不同,如果尝试插入 null (Nothing) 引用,则ArgumentException引发此实现IList<T>.Insert。