PathSegmentCollection.Insert(Int32, PathSegment) Method

Definition

Inserts a PathSegment into this PathSegmentCollection at the specified index.

public:
 virtual void Insert(int index, System::Windows::Media::PathSegment ^ value);
public void Insert (int index, System.Windows.Media.PathSegment value);
abstract member Insert : int * System.Windows.Media.PathSegment -> unit
override this.Insert : int * System.Windows.Media.PathSegment -> unit
Public Sub Insert (index As Integer, value As PathSegment)

Parameters

index
Int32

The index at which to insert value, the specified PathSegment.

value
PathSegment

The item to insert.

Implements

Exceptions

value is null.

index is not a valid index in the PathSegmentCollection.

The PathSegmentCollection is read-only.

-or-

The PathSegmentCollection has a fixed size.

Remarks

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

Applies to

See also