PointCollection::Insert Method (Int32, Point)

 

Inserts a Point into the PointCollection at the specified index.

Namespace:   System.Windows.Media
Assembly:  PresentationCore (in PresentationCore.dll)

public:
virtual void Insert(
	int index,
	Point value
) sealed

Parameters

index
Type: System::Int32

The zero-based index at which value should be inserted.

value
Type: System.Windows::Point

The Point to insert into the PointCollection.

Exception Condition
ArgumentException

value is null.

ArgumentOutOfRangeException

index is not a valid index in the PointCollection.

NotSupportedException

The PointCollection is read-only.

- or -

The PointCollection has a fixed size.

Unlike typical implementations of IList<T>::Insert, this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.

.NET Framework
Available since 3.0
Return to top
Show: