DataGridViewLinkCell.KeyUpUnsharesRow(KeyEventArgs, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出當鬆開按鍵且儲存格有焦點時,包含儲存格的資料列是否會取消共用。
protected:
override bool KeyUpUnsharesRow(System::Windows::Forms::KeyEventArgs ^ e, int rowIndex);
protected override bool KeyUpUnsharesRow (System.Windows.Forms.KeyEventArgs e, int rowIndex);
override this.KeyUpUnsharesRow : System.Windows.Forms.KeyEventArgs * int -> bool
Protected Overrides Function KeyUpUnsharesRow (e As KeyEventArgs, rowIndex As Integer) As Boolean
參數
KeyEventArgs,包含與按下的按鍵有關的資料。
- rowIndex
- Int32
包含儲存格的資料列之索引。
傳回
如果已鬆開空格鍵、TrackVisitedState 屬性為 true
、LinkVisited 屬性為 true
,且未按下 CTRL、ALT 和 SHIFT 按鍵,則為 false
,否則為 false
。
備註
KeyUpUnsharesRow 在之前 OnKeyUp呼叫 。 如果的呼叫OnKeyUp具有取消共用包含儲存格之資料列的效果,它必須傳回 true
。 否則應該會傳回 false
。
如需數據列共用的詳細資訊,請參閱調整 Windows Forms DataGridView 控件的最佳做法。