RectHelper.Union メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Union(Rect, Point) |
指定した四角形と指定したポイントを格納するのに十分な大きさの四角形を作成します。 C# コードでは、代わりに Rect.Union(Point) を 使用する必要があります。 |
Union(Rect, Rect) |
指定した 2 つの四角形をちょうど格納できる大きさの四角形を作成します。 C# コードでは、代わりに Rect.Union(Rect) を使用する必要があります。 |
Union(Rect, Point)
指定した四角形と指定したポイントを格納するのに十分な大きさの四角形を作成します。 C# コードでは、代わりに Rect.Union(Point) を 使用する必要があります。
public:
static Rect Union(Rect target, Point point);
/// [Windows.Foundation.Metadata.DefaultOverload]
/// [Windows.Foundation.Metadata.Overload("UnionWithPoint")]
static Rect Union(Rect const& target, Point const& point);
[Windows.Foundation.Metadata.DefaultOverload]
[Windows.Foundation.Metadata.Overload("UnionWithPoint")]
public static Rect Union(Rect target, Point point);
function union(target, point)
Public Shared Function Union (target As Rect, point As Point) As Rect
パラメーター
- target
- Rect
格納する四角形。
- point
- Point
格納対象の点。
戻り値
指定した四角形とポイントを格納するのに十分な大きさの四角形。
- 属性
こちらもご覧ください
適用対象
Union(Rect, Rect)
指定した 2 つの四角形をちょうど格納できる大きさの四角形を作成します。 C# コードでは、代わりに Rect.Union(Rect) を使用する必要があります。
public:
static Rect Union(Rect target, Rect rect);
/// [Windows.Foundation.Metadata.Overload("UnionWithRect")]
static Rect Union(Rect const& target, Rect const& rect);
[Windows.Foundation.Metadata.Overload("UnionWithRect")]
public static Rect Union(Rect target, Rect rect);
function union(target, rect)
Public Shared Function Union (target As Rect, rect As Rect) As Rect
パラメーター
- target
- Rect
最初に格納する四角形。
- rect
- Rect
2 番目に格納する四角形。
戻り値
指定した 2 つの四角形を格納するのに十分な大きさの四角形。
- 属性