Compartilhar via


IRawElementProviderFragmentRoot.GetFocus Método

Definição

Recupera o elemento desse fragmento que tem o foco de entrada.

public:
 System::Windows::Automation::Provider::IRawElementProviderFragment ^ GetFocus();
public System.Windows.Automation.Provider.IRawElementProviderFragment GetFocus ();
abstract member GetFocus : unit -> System.Windows.Automation.Provider.IRawElementProviderFragment
Public Function GetFocus () As IRawElementProviderFragment

Retornos

IRawElementProviderFragment

O provedor para o elemento desse fragmento que tem o foco de entrada, se houver; caso contrário, uma referência nula (Nothing no Visual Basic).

Exemplos

O exemplo de código a seguir mostra uma possível implementação desse método para uma caixa de listagem. Ele retorna o item selecionado no momento na lista.

/// <summary>
/// Returns the child element that is selected when the list gets focus.
/// </summary>
/// <returns>The selected item.</returns>
/// <remarks>
/// SelectedIndex is a class property that maintains the index of the currently
/// selected item in the myItems collection.</remarks>
IRawElementProviderFragment IRawElementProviderFragmentRoot.GetFocus()
{
    if (SelectedIndex >= 0)
    {
        return (IRawElementProviderFragment)myItems[SelectedIndex];
    }
    else
    {
        return null;
    }
}
''' <summary>
''' Returns the child element that is selected when the list gets focus.
''' </summary>
''' <returns>The selected item.</returns>
''' <remarks>
''' SelectedIndex is a class property that maintains the index of the currently
''' selected item in the myItems collection.</remarks>
Function GetFocus() As IRawElementProviderFragment _
    Implements IRawElementProviderFragmentRoot.GetFocus

    If SelectedIndex >= 0 Then
        Return DirectCast(myItems(SelectedIndex), IRawElementProviderFragment)
    Else
        Return Nothing
    End If
End Function 'IRawElementProviderFragmentRoot.GetFocus

Comentários

Se o foco estiver em um elemento em outra estrutura hospedada por esse fragmento, o método retornará o elemento que hospeda esse fragmento.

Aplica-se a

Confira também