Changeset 104 for Include/Classes/System/Drawing/PointF.ab
- Timestamp:
- Feb 16, 2007, 7:34:38 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Drawing/PointF.ab
r77 r104 45 45 End Sub 46 46 47 Function IsEmpty() As B OOL47 Function IsEmpty() As Boolean 48 48 If x = 0 And y = 0 Then 49 49 Return _System_TRUE … … 87 87 End Function 88 88 89 Function Operator == (sz As PointF) As B OOL89 Function Operator == (sz As PointF) As Boolean 90 90 Return Equals(sz) 91 91 End Function 92 92 93 Function Operator <> (sz As PointF) As B OOL93 Function Operator <> (sz As PointF) As Boolean 94 94 Return Not Equals(sz) 95 95 End Function … … 125 125 End Function 126 126 127 Function Equals(pt As PointF) As B OOL127 Function Equals(pt As PointF) As Boolean 128 128 If x = pt.x And y = pt.y Then 129 129 Equals = _System_TRUE
Note:
See TracChangeset
for help on using the changeset viewer.