Point.Equals 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Equals(Point) |
指定此点实例是否包含与另一点相同的坐标。 |
Equals(Object) |
指定此点实例是否包含与指定对象相同的坐标。 |
Equals(Point)
- Source:
- Point.cs
- Source:
- Point.cs
- Source:
- Point.cs
指定此点实例是否包含与另一点相同的坐标。
public:
virtual bool Equals(System::Drawing::Point other);
public readonly bool Equals (System.Drawing.Point other);
public bool Equals (System.Drawing.Point other);
override this.Equals : System.Drawing.Point -> bool
Public Function Equals (other As Point) As Boolean
参数
- other
- Point
要测试是否相等的点。
返回
如果 other
具有与此点实例相同的坐标,则为 true
。
实现
适用于
Equals(Object)
- Source:
- Point.cs
- Source:
- Point.cs
- Source:
- Point.cs
指定此点实例是否包含与指定对象相同的坐标。
public:
override bool Equals(System::Object ^ obj);
public override readonly bool Equals (object? obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
参数
返回
如果 obj
是 Point 且具有与此点实例相同的坐标,则为 true
。