IRawElementProviderFragment.BoundingRectangle Proprietà

Definizione

Ottiene il rettangolo di delimitazione di questo 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

Valore della proprietà

Rettangolo di delimitazione, nelle coordinate dello schermo.

Esempio

Nel codice di esempio seguente lo stato interno del rettangolo di selezione viene mantenuto in un oggetto , che viene convertito in un System.Drawing.RectangleSystem.Windows.Rect oggetto prima di essere restituito.

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

Commenti

Nessun ritaglio è necessario se l'elemento è parzialmente oscurato o parzialmente fuori schermo. La IsOffscreen proprietà deve essere impostata per indicare se il rettangolo è effettivamente visibile.

Non tutti i punti all'interno del rettangolo di selezione sono necessariamente cliccabili.

Si applica a

Vedi anche