DataGridViewCell.DataGridViewCellAccessibleObject.Navigate 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
可巡覽到另一個可存取物件。
public:
override System::Windows::Forms::AccessibleObject ^ Navigate(System::Windows::Forms::AccessibleNavigation navigationDirection);
public override System.Windows.Forms.AccessibleObject Navigate (System.Windows.Forms.AccessibleNavigation navigationDirection);
public override System.Windows.Forms.AccessibleObject? Navigate (System.Windows.Forms.AccessibleNavigation navigationDirection);
override this.Navigate : System.Windows.Forms.AccessibleNavigation -> System.Windows.Forms.AccessibleObject
Public Overrides Function Navigate (navigationDirection As AccessibleNavigation) As AccessibleObject
參數
- navigationDirection
- AccessibleNavigation
其中一個 AccessibleNavigation 值。
傳回
DataGridViewCell.DataGridViewCellAccessibleObject,表示指定 DataGridViewCell 值上的 AccessibleNavigation。
例外狀況
Owner 屬性的值是 null
。
備註
下表描述擁有 DataGridViewCellDataGridViewCell.DataGridViewCellAccessibleObject 方法針對每個參數值所傳回的 Navigate 。
參數值 | 描述 |
---|---|
Right |
DataGridViewCell目前儲存格右邊的 。
Navigate 如果目前儲存格位於最右邊的資料行中,則傳 null 回 。 |
Left | DataGridViewCell目前儲存格左邊的 。 Navigate 如果目前儲存格位於最左邊的資料行中,則會傳回資料列標頭的可存取物件。 |
Next |
DataGridViewCell具有下一個較高索引的 。
Navigate 如果目前儲存格位於第一個資料行中,則傳 null 回 。 |
Previous |
DataGridViewCell具有下一個較低索引的 。
Navigate 如果目前儲存格位於最後一個資料行中,則傳 null 回 。 |
Up | 相同資料行中的 , DataGridViewCell 以及目前儲存格上方的一個資料列。
Navigate 如果目前儲存格位於第一列,則傳 null 回 。 |
Down | 相同資料行中的 , DataGridViewCell 以及目前儲存格下方的一個資料列。
Navigate 如果目前儲存格位於最後一列,則傳 null 回 。 |
所有其他 AccessibleNavigation 值 |
null . |