Changeset 104 for Include/Classes/System/Drawing/Point.ab
- Timestamp:
- Feb 16, 2007, 7:34:38 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Drawing/Point.ab
r29 r104 51 51 End Sub 52 52 53 Function IsEmpty() As B OOL53 Function IsEmpty() As Boolean 54 54 If x = 0 And y = 0 Then 55 55 Return _System_TRUE … … 80 80 End Function 81 81 82 Function Operator == (sz As Point) As B OOL82 Function Operator == (sz As Point) As Boolean 83 83 Return Equals(sz) 84 84 End Function 85 85 86 Function Operator <> (sz As Point) As B OOL86 Function Operator <> (sz As Point) As Boolean 87 87 Return Not Equals(sz) 88 88 End Function … … 118 118 End Function 119 119 120 Function Equals(pt As Point) As B OOL120 Function Equals(pt As Point) As Boolean 121 121 If x = pt.x And y = pt.y Then 122 122 Equals = _System_TRUE
Note:
See TracChangeset
for help on using the changeset viewer.