IRawElementProviderFragment.BoundingRectangle Propiedad

Definición

Obtiene el rectángulo delimitador de este 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 de propiedad

El rectángulo delimitador, en coordenadas de pantalla.

Ejemplos

En el código de ejemplo siguiente, el estado interno del rectángulo delimitador se mantiene en , System.Drawing.Rectangleque se convierte en un System.Windows.Rect objeto antes de devolverse.

/// <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

Comentarios

No se requiere recorte si el elemento está parcialmente oculto o parcialmente fuera de la pantalla. La IsOffscreen propiedad debe establecerse para indicar si el rectángulo está realmente visible.

No todos los puntos del rectángulo delimitador son necesariamente accesibles.

Se aplica a

Consulte también