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) 參考,這個實作 IList<T>.Insert 會 ArgumentException 擲回 。