PathSegmentCollection Klasse
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Stellt eine Auflistung von PathSegment-Objekten dar, auf die vom Index einzeln zugegriffen werden kann.
public ref class PathSegmentCollection sealed : IIterable<PathSegment ^>, IVector<PathSegment ^>
/// [Windows.Foundation.Metadata.Activatable(65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 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.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
/// [Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
class PathSegmentCollection final : IIterable<PathSegment>, IVector<PathSegment>
[Windows.Foundation.Metadata.Activatable(65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 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>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
[Windows.Foundation.Metadata.Activatable(65536, "Windows.Foundation.UniversalApiContract")]
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>
- Vererbung
- Attribute
- Implementiert
Windows-Anforderungen
Gerätefamilie |
Windows 10 (eingeführt in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (eingeführt in v1.0)
|
Hinweise
Diese Klasse ist für das Festlegen der Vektordaten für einen Pfad oder ein PathIcon relevant.
Anstatt ein instance oder ein Objektelement zu erstellen, können Sie auch verschiedene Typen von Segmenten als Teil eines Vektors innerhalb der Zeichenfolge für eine Syntax der Befehle Verschieben und Zeichnen definieren.
Auflisten der Sammlung in C# oder Microsoft Visual Basic
Eine PathSegmentCollection ist aufzählbar, sodass Sie sprachspezifische Syntax wie foreach in C# verwenden können, um die Elemente in der Auflistung aufzulisten. Der Compiler führt die Typumwandlung für Sie durch, und Sie müssen nicht explizit in IEnumerable<PathSegment>
umwandeln. Wenn Sie eine explizite Umwandlung durchführen müssen, z. B. wenn Sie GetEnumerator aufrufen möchten, wandeln Sie mit einer PathSegment-Einschränkung in IEnumerable um.
Konstruktoren
PathSegmentCollection() |
Initialisiert eine neue instance der PathSegmentCollection-Klasse. |
Eigenschaften
Size |
Ruft die Größe (Anzahl) der Auflistung ab. |
Methoden
Append(PathSegment) |
Fügt der Auflistung ein neues Element hinzu. |
Clear() |
Entfernt alle Elemente aus der Auflistung. |
First() |
Gibt einen Iterator für die Elemente in der Auflistung zurück. |
GetAt(UInt32) |
Gibt das Element zurück, das sich am angegebenen Index befindet. |
GetMany(UInt32, PathSegment[]) |
Ruft mehrere Elemente in einem einzigen Durchlauf durch den Iterator ab. |
GetView() |
Ruft eine unveränderliche Ansicht in die Auflistung ab. |
IndexOf(PathSegment, UInt32) |
Ruft den Index des angegebenen Elements ab. |
InsertAt(UInt32, PathSegment) |
Fügt das angegebene Element am angegebenen Index ein. |
RemoveAt(UInt32) |
Entfernt das Element am angegebenen Index. |
RemoveAtEnd() |
Entfernt das letzte Element in der Auflistung. |
ReplaceAll(PathSegment[]) |
Löscht zunächst die Auflistung und fügt dann das bereitgestellte Array als neue Elemente ein. |
SetAt(UInt32, PathSegment) |
Legt den Wert am angegebenen Index auf den angegebenen PathSegment-Wert fest. |