DataGridView.ProcessDeleteKey(Keys) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
處理 DELETE 鍵。
protected:
bool ProcessDeleteKey(System::Windows::Forms::Keys keyData);
protected bool ProcessDeleteKey (System.Windows.Forms.Keys keyData);
member this.ProcessDeleteKey : System.Windows.Forms.Keys -> bool
Protected Function ProcessDeleteKey (keyData As Keys) As Boolean
參數
傳回
如果已處理按鍵,則為 true
;否則為 false
。
例外狀況
DELETE 鍵可能會刪除一或多個資料列,但是資料來源中的錯誤會阻止這個刪除,而且 DataError 事件沒有處理常式或處理常式已將 ThrowException 屬性設定為 true
。
備註
當使用者按下 DELETE 以刪除 控制項中的資料列時,這個方法會 true
傳回 。 如果 SelectionMode 屬性設定 FullRowSelect 為 或 RowHeaderSelect ,且 屬性設定 true
為 , MultiSelect 則使用者可以刪除資料列。
DataGridView如果 系結至資料, IBindingList.AllowRemove 資料來源的 屬性也必須設定為 true
。