PointCollection.Add(Point) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 Point 加入至 PointCollection 的結尾。
public:
virtual void Add(System::Windows::Point value);
public void Add (System.Windows.Point value);
abstract member Add : System.Windows.Point -> unit
override this.Add : System.Windows.Point -> unit
Public Sub Add (value As Point)
參數
- value
- Point
加入至 Point 結尾的 PointCollection。
實作
例外狀況
value
為 null
。
備註
不同于 的一般實作 ICollection<T>.Add ,如果您嘗試新增 Null (Nothing) 參考,這個實作會 ArgumentException 擲回 。