IRawElementProviderFragment.BoundingRectangle プロパティ

定義

この要素の外接する四角形を取得します。

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

プロパティ値

外接する四角形を表す画面座標。

次のコード例では、外接する四角形の内部状態は に System.Drawing.Rectangle保持され、返される前に に 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

注釈

要素が部分的に隠れている場合、または部分的に画面から外れている場合は、クリッピングは必要ありません。 プロパティは IsOffscreen 、四角形が実際に表示されるかどうかを示すように設定する必要があります。

外接する四角形内のすべての点が必ずしもクリック可能であるとは限りません。

適用対象

こちらもご覧ください