GradientStopCollection.Insert(Int32, GradientStop) Method

Definition

Inserts a GradientStop at the specified position in the gradient stop list.

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

Parameters

index
Int32

The zero-based index at which to insert the object.

value
GradientStop

The GradientStop to insert.

Implements

Exceptions

value is null.

index is not a valid index in the GradientStopCollection.

The GradientStopCollection is read-only.

-or-

The GradientStopCollection 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