PathSegmentCollection.Add(PathSegment) 方法

定义

PathSegment 添加到集合的末尾。

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

参数

value
PathSegment

要添加到集合的段。

实现

例外

valuenull

PathSegmentCollection 为只读。

- 或 -

PathSegmentCollection 具有固定的大小。

注解

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

与 的典型实现ICollection<T>.Add不同,如果尝试添加 null (Nothing) 引用,则此实现将引发 ArgumentException

适用于

另请参阅