GradientStopCollection.Insert(Int32, GradientStop) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 GradientStop 插入到渐变停止点列表中的指定位置。
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)
参数
- index
- Int32
从零开始的索引,对象将插入到此处。
- value
- GradientStop
要插入的 GradientStop。
实现
例外
value
为 null
。
index
不是 GradientStopCollection 中的有效索引。
注解
与典型的实现不同,如果尝试插入 null (Nothing) 引用,则ArgumentException引发此实现IList<T>.Insert。