ElementReferenceExtensions.FocusAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FocusAsync(ElementReference) |
將焦點提供給指定的 ElementReference 專案。 |
FocusAsync(ElementReference, Boolean) |
將焦點提供給指定的 ElementReference 專案。 |
FocusAsync(ElementReference)
將焦點提供給指定的 ElementReference 專案。
public:
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask FocusAsync(Microsoft::AspNetCore::Components::ElementReference elementReference);
public static System.Threading.Tasks.ValueTask FocusAsync (this Microsoft.AspNetCore.Components.ElementReference elementReference);
static member FocusAsync : Microsoft.AspNetCore.Components.ElementReference -> System.Threading.Tasks.ValueTask
<Extension()>
Public Function FocusAsync (elementReference As ElementReference) As ValueTask
參數
- elementReference
- ElementReference
要焦點之專案的參考。
傳回
, ValueTask 表示非同步焦點作業。
適用於
FocusAsync(ElementReference, Boolean)
將焦點提供給指定的 ElementReference 專案。
public static System.Threading.Tasks.ValueTask FocusAsync (this Microsoft.AspNetCore.Components.ElementReference elementReference, bool preventScroll);
static member FocusAsync : Microsoft.AspNetCore.Components.ElementReference * bool -> System.Threading.Tasks.ValueTask
<Extension()>
Public Function FocusAsync (elementReference As ElementReference, preventScroll As Boolean) As ValueTask
參數
- elementReference
- ElementReference
要焦點之專案的參考。
- preventScroll
- Boolean
值 Boolean ,指出瀏覽器是否應該捲動檔,以將新焦點的專案帶入檢視中。 (預設) 的 preventScroll 值為 false,表示瀏覽器會在焦點之後將元素捲動到檢視中。 如果 preventScroll 設定為 true,則不會發生捲動。
傳回
, ValueTask 表示非同步焦點作業。