DataGridViewColumnCollection.RemoveAt(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除指定索引處的資料行。
public:
virtual void RemoveAt(int index);
public virtual void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Overridable Sub RemoveAt (index As Integer)
參數
- index
- Int32
要刪除之資料行的索引。
例外狀況
index
小於零,或大於控制項中的資料行數目減一。
相關聯的 DataGridView 控制項正在執行下列其中一個動作,暫時阻止加入新的資料行:
選取控制項中的所有儲存格。
清除選取範圍。
更新資料行 DisplayIndex 屬性值。
-或-
針對下列其中一個 DataGridView 事件 ,從處理常式呼叫這個方法:
備註
若要移除系結至資料來源時自動產生的資料行,請在事件處理常式中 DataGridView.DataBindingComplete 呼叫這個方法。