Sdílet prostřednictvím


IRawElementProviderFragment.BoundingRectangle Vlastnost

Definice

Získá ohraničující obdélník tohoto prvku.

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

Hodnota vlastnosti

Rect

Ohraničující obdélník v souřadnicích obrazovky

Příklady

V následujícím příkladu kódu se vnitřní stav ohraničujícího obdélníku uchovává v a System.Drawing.Rectangle, který je převeden na před vrácením System.Windows.Rect .

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

Poznámky

Pokud je prvek částečně zakrytý nebo částečně mimo obrazovku, není potřeba žádný výřez. Vlastnost IsOffscreen by měla být nastavena tak, aby indikuje, zda je obdélník skutečně viditelný.

Ne všechny body v ohraničujícím obdélníku jsou nutně kliknutelné.

Platí pro

Viz také