java rect offset_Rect.Offset 方法 (System.Windows) | Microsoft Docs

傳回矩形,這個矩形是使用所指定水平和垂直數量從指定之矩形位移的矩形。Returns a rectangle that is offset from the specified rectangle by using the specified horizontal and vertical amounts.

public:

static System::Windows::Rect Offset(System::Windows::Rect rect, double offsetX, double offsetY);

public static System.Windows.Rect Offset (System.Windows.Rect rect, double offsetX, double offsetY);

static member Offset : System.Windows.Rect * double * double -> System.Windows.Rect

Public Shared Function Offset (rect As Rect, offsetX As Double, offsetY As Double) As Rect

參數

rect

要移動的矩形。The rectangle to move.

offsetX

新矩形的水平位移。The horizontal offset for the new rectangle.

offsetY

新矩形的垂直位移。The vertical offset for the new rectangle.

傳回

產生的矩形。The resulting rectangle.

例外狀況

範例

The following example shows how to use the Offset(Rect, Double, Double) method to change the position of a rectangle.

private Point offsetExample4()

{

// Initialize new rectangle.

Rect myRectangle = new Rect();

// The Location property specifies the coordinates of the upper left-hand

// corner of the rectangle.

myRectangle.Location = new Point(10, 5);

// Set the Size property of the rectangle with a width of 200

// and a height of 50.

myRectangle.Size = new Size(200, 50);

// Create a vector to use to offset the position of the rectangle.

Vector vector1 = new Vector(20, 30);

// The Offset method translates the specified rectangle by the specified horizontal

// and vertical amounts and returns the resulting Rect.

// resultRect location changed from 10,5 to 30,35.

Rect resultRect = Rect.Offset(myRectangle, 20, 30);

// This rectangle's location changed from 10,5 to 30,35.

return resultRect.Location;

}

備註

不允許使用空的矩形 () 來呼叫這個方法 Rect.Empty 。Calling this method with an empty rectangle (Rect.Empty) is not allowed.

適用於

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值