Show / Hide Table of Contents

Class PointCollection

Represents a collection of Point values that can be individually accessed by index.

Inheritance
System.Object
DependencyObject
PresentationFrameworkCollection<Point>
PointCollection
Implements
System.Collections.Generic.IList<Point>
System.Collections.Generic.ICollection<Point>
System.Collections.Generic.IEnumerable<Point>
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable
Inherited Members
PresentationFrameworkCollection<Point>.CountProperty
PresentationFrameworkCollection<Point>.Count
PresentationFrameworkCollection<Point>.Item[Int32]
PresentationFrameworkCollection<Point>.IsFixedSize
PresentationFrameworkCollection<Point>.IsReadOnly
PresentationFrameworkCollection<Point>.IsSynchronized
PresentationFrameworkCollection<Point>.SyncRoot
PresentationFrameworkCollection<Point>.GetEnumerator()
PresentationFrameworkCollection<Point>.Add(Point)
PresentationFrameworkCollection<Point>.Clear()
PresentationFrameworkCollection<Point>.Contains(Point)
PresentationFrameworkCollection<Point>.CopyTo(Array, Int32)
PresentationFrameworkCollection<Point>.CopyTo(Point[], Int32)
PresentationFrameworkCollection<Point>.IndexOf(Point)
PresentationFrameworkCollection<Point>.Insert(Int32, Point)
PresentationFrameworkCollection<Point>.Remove(Point)
PresentationFrameworkCollection<Point>.RemoveAt(Int32)
PresentationFrameworkCollection<Point>.IEnumerable.GetEnumerator()
PresentationFrameworkCollection<Point>.IList.Add(Object)
PresentationFrameworkCollection<Point>.IList.Remove(Object)
PresentationFrameworkCollection<Point>.IList.RemoveAt(Int32)
PresentationFrameworkCollection<Point>.IList.Insert(Int32, Object)
PresentationFrameworkCollection<Point>.IList.IndexOf(Object)
PresentationFrameworkCollection<Point>.IList.Contains(Object)
PresentationFrameworkCollection<Point>.IList.Item[Int32]
DependencyObject.GetValue(DependencyProperty)
DependencyObject.SetCurrentValue(DependencyProperty, Object)
DependencyObject.ReadLocalValue(DependencyProperty)
DependencyObject.SetValue(DependencyProperty, Object)
DependencyObject.SetValue(DependencyPropertyKey, Object)
DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs)
DependencyObject.CoerceValue(DependencyProperty)
DependencyObject.Dispatcher
DependencyObject.INTERNAL_OnAttachedToVisualTree()
DependencyObject.INTERNAL_OnDetachedFromVisualTree()
DependencyObject.ClearValue(DependencyProperty)
DependencyObject.ClearValue(DependencyPropertyKey)
DependencyObject.CheckAccess()
DependencyObject.GetAnimationBaseValue(DependencyProperty)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Media
Assembly: OpenSilver.dll
Syntax
public sealed class PointCollection : PresentationFrameworkCollection<Point>, IDependencyObject, IList<Point>, ICollection<Point>, IEnumerable<Point>, IList, ICollection, IEnumerable

Constructors

| Improve this Doc View Source

PointCollection()

Initializes a new instance of the PointCollection class.

Declaration
public PointCollection()
| Improve this Doc View Source

PointCollection(IEnumerable<Point>)

Initializes a new instance of the PointCollection class that contains items copied from the specified collection of Point values and has the same initial capacity as the number of items copied.

Declaration
public PointCollection(IEnumerable<Point> points)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<Point> points

The collection whose items are copied to the new PointCollection.

| Improve this Doc View Source

PointCollection(Int32)

Initializes a new instance of the PointCollection class with the specified capacity.

Declaration
public PointCollection(int capacity)
Parameters
Type Name Description
System.Int32 capacity

The number of Point values that the collection is initially capable of storing.

Methods

| Improve this Doc View Source

Parse(String)

Converts a String representation of a collection of points into an equivalent PointCollection.

Declaration
public static PointCollection Parse(string source)
Parameters
Type Name Description
System.String source

The System.String representation of the collection of points.

Returns
Type Description
PointCollection

The equivalent PointCollection.

Implements

System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.IEnumerable

Extension Methods

DependencyObjectHelper.GetSelfAndAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestors(DependencyObject)
VisualTreeExtensions.GetVisualAncestorsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualChildren(DependencyObject)
VisualTreeExtensions.GetVisualChildrenAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualDescendants(DependencyObject)
VisualTreeExtensions.GetVisualDescendantsAndSelf(DependencyObject)
VisualTreeExtensions.GetVisualSiblings(DependencyObject)
VisualTreeExtensions.GetVisualSiblingsAndSelf(DependencyObject)
  • Improve this Doc
  • View Source