Compartilhar via


IRawElementProviderFragment.BoundingRectangle Propriedade

Definição

Obtém o retângulo delimitador deste elemento.

public:
 property System::Windows::Rect BoundingRectangle { System::Windows::Rect get(); };
public System.Windows.Rect BoundingRectangle { get; }
member this.BoundingRectangle : System.Windows.Rect
Public ReadOnly Property BoundingRectangle As Rect

Valor da propriedade

Rect

O retângulo delimitador, nas coordenadas da tela.

Exemplos

No código de exemplo a seguir, o estado interno do retângulo delimitador é mantido em um System.Drawing.Rectangle, que é convertido em um System.Windows.Rect antes de ser retornado.

/// <summary>
/// Gets the bounding rectangle.
/// </summary>
public System.Windows.Rect BoundingRectangle
{
    get 
    {
        return new System.Windows.Rect(myBounds.X, myBounds.Y, myBounds.Width, myBounds.Height);
    }
}
''' <summary>
''' Gets the bounding rectangle.
''' </summary>

Public ReadOnly Property BoundingRectangle() As System.Windows.Rect _
    Implements IRawElementProviderFragment.BoundingRectangle
    Get
        Return New System.Windows.Rect(myBounds.X, myBounds.Y, myBounds.Width, myBounds.Height)
    End Get
End Property

Comentários

Nenhum recorte será necessário se o elemento estiver parcialmente obscurecido ou parcialmente fora da tela. A IsOffscreen propriedade deve ser definida para indicar se o retângulo está realmente visível.

Nem todos os pontos dentro do retângulo delimitador são necessariamente clicáveis.

Aplica-se a

Confira também