PathSegmentCollection 类

定义

表示可按索引单独访问的 PathSegment 对象的集合。

public ref class PathSegmentCollection sealed : IIterable<PathSegment ^>, IVector<PathSegment ^>
/// [Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class PathSegmentCollection final : IIterable<PathSegment>, IVector<PathSegment>
[Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class PathSegmentCollection : IEnumerable<PathSegment>, IList<PathSegment>
Public NotInheritable Class PathSegmentCollection
Implements IEnumerable(Of PathSegment), IList(Of PathSegment)
<object>
  <object.property>
    oneOrMorePathSegments
  </object.property>
</object>
继承
Object Platform::Object IInspectable PathSegmentCollection
属性
实现

注解

此类与设置 Path 或 PathIcon 的矢量数据相关。

对于 Move 和 draw 命令语法,还可以将不同类型的段定义为字符串中向量的一部分,而不是创建实例或对象元素。

枚举 C# 或 Microsoft Visual Basic 中的集合

PathSegmentCollection 是可枚举的,因此可以使用特定于语言的语法(如 C# 中的 foreach )枚举集合中的项。 编译器为你执行类型强制转换,你无需显式转换为 IEnumerable<PathSegment> 。 如果需要显式强制转换(例如,如果要调用 GetEnumerator),请使用 PathSegment 约束强制转换为 IEnumerable

构造函数

PathSegmentCollection()

初始化 PathSegmentCollection 类的新实例。

属性

Size

获取集合的大小 (计数) 。

方法

Append(PathSegment)

将新项添加到集合。

Clear()

从集合中移除所有项。

First()

返回集合中项的迭代器。

GetAt(UInt32)

返回位于指定索引处的项。

GetMany(UInt32, PathSegment[])

通过迭代器在一次传递中检索多个元素。

GetView()

获取集合中的不可变视图。

IndexOf(PathSegment, UInt32)

检索指定项的索引。

InsertAt(UInt32, PathSegment)

在指定的索引处插入指定的项。

RemoveAt(UInt32)

删除指定索引处的项。

RemoveAtEnd()

删除集合中的最后一项。

ReplaceAll(PathSegment[])

首先清除集合,然后将提供的数组作为新项插入。

SetAt(UInt32, PathSegment)

将指定索引处的值设置为指定的 PathSegment 值。

适用于

另请参阅