PathSegmentCollection.Insert(Int32, PathSegment) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
Remarks
Unlike typical implementations of IList<T>.Insert, this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.