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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET