PathFigureCollection.Insert(Int32, PathFigure) 方法

定义

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 对象。

实现

例外

valuenull

index 不是 PathFigureCollection 中的有效索引。

PathFigureCollection 为只读。

注解

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

适用于

另请参阅