PathFigureCollection.Add(PathFigure) 方法

定义

PathFigure 添加到集合的末尾。

public:
 virtual void Add(System::Windows::Media::PathFigure ^ value);
public void Add (System.Windows.Media.PathFigure value);
abstract member Add : System.Windows.Media.PathFigure -> unit
override this.Add : System.Windows.Media.PathFigure -> unit
Public Sub Add (value As PathFigure)

参数

value
PathFigure

要添加到集合中的 PathFigure

实现

例外

valuenull

PathFigureCollection 为只读。

- 或 -

PathFigureCollection 具有固定的大小。

注解

由于 PathFigure 对象派生自 Freezable,因此在使用对象时会复制它们。 因此,以后可能无法检索或删除 PathFigure 使用原始 PathFigure 对象添加到集合的 。 PathFigure集合中的 是原始 PathFigure 副本,被视为与PathFigure添加的不同。

如果尝试添加 null (Nothing) 引用,则此实现将ArgumentException引发 。

适用于