PointCollection::Item Property (Int32)

 

Gets or sets the Point at the specified index.

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

public:
property Point default[
	int index
] {
	virtual Point get(int index) sealed;
	virtual void set(int index, Point value) sealed;
}

Parameters

index
Type: System::Int32

The zero-based index of the Point to get or set.

Property Value

Type: System.Windows::Point

The Point at the specified index.

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>::Item, this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.

.NET Framework
Available since 3.0
Return to top
Show: