GradientStopCollection.Insert(Int32, GradientStop) 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 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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.