System::Drawing::Point::Add method
Point::Add method
将指定的 Size 对象的宽度和高度值分别添加到指定的 Point 对象的 X 和 Y 坐标值。
static Point System::Drawing::Point::Add(const Point &point, const Size &size)
| 参数 | 类型 | 描述 |
|---|---|---|
| 点 | const Point& | 要平移的点 |
| size | const Size& | 指定要添加到 point 坐标值的数值的 Size 对象 |
ReturnValue
一个新的 Point 对象,其 X 坐标值等于 point 的 X 坐标值与 size 的宽度值之和,Y 坐标值等于 point 的 Y 坐标值与 size 的高度值之和。
另见
- Class Point
- Class Size
- Class Point
- Namespace System::Drawing
- Library Aspose.Font for C++