DataGridViewCell.DataGridViewCellAccessibleObject.Select 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
修改選取或者移動可存取物件的鍵盤焦點。
public:
override void Select(System::Windows::Forms::AccessibleSelection flags);
public override void Select (System.Windows.Forms.AccessibleSelection flags);
override this.Select : System.Windows.Forms.AccessibleSelection -> unit
Public Overrides Sub Select (flags As AccessibleSelection)
參數
- flags
- AccessibleSelection
其中一個 AccessibleSelection 值。
例外狀況
Owner 屬性的值是 null
。
備註
下表說明方法針對每個 flags
值所 Select 執行的動作。
參數值 | 動作 |
---|---|
TakeFocus | 取得 DataGridView 焦點。 |
TakeSelection | 擁有 DataGridViewCell 這個 DataGridViewCell.DataGridViewCellAccessibleObject 的 會取得焦點。 |
AddSelection | 會 DataGridViewCell 新增至 SelectedCells 屬性。 |
RemoveSelection | 會 DataGridViewCell 從 SelectedCells 屬性中移除 。 |
所有其他 AccessibleSelection 值 | 不採取任何動作。 |