PathFigureCollection.Insert(Int32, PathFigure) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 PathFigure 插入集合中的特定位置。
public:
virtual void Insert(int index, System::Windows::Media::PathFigure ^ value);
public void Insert (int index, System.Windows.Media.PathFigure value);
abstract member Insert : int * System.Windows.Media.PathFigure -> unit
override this.Insert : int * System.Windows.Media.PathFigure -> unit
Public Sub Insert (index As Integer, value As PathFigure)
参数
- index
- Int32
插入 PathFigure 的索引位置。
- value
- PathFigure
要插入到集合中的 PathFigure 对象。
实现
例外
value
为 null
。
index
不是 PathFigureCollection 中的有效索引。
注解
与典型的实现IList<T>.Insert不同,如果尝试插入 null (Nothing) 引用,则此实现将ArgumentException引发该实现。