Changeset 166 for Include/Classes/System/Drawing/RectangleF.ab
- Timestamp:
- Mar 13, 2007, 11:55:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Drawing/RectangleF.ab
r104 r166 113 113 End Function 114 114 115 Function Operator = 115 Function Operator =(ByRef rc As RectangleF) 116 116 With rc 117 117 x = .x … … 122 122 End Function 123 123 124 Function Operator == 124 Function Operator ==(ByRef rc As RectangleF) 125 125 Return Equals(rc) 126 126 End Function 127 127 128 Function Operator <> 128 Function Operator <>(ByRef rc As RectangleF) 129 129 Return Not Equals(rc) 130 130 End Function … … 136 136 Equals = _System_FALSE 137 137 End If 138 End Function 139 140 Override Function GetHashCode() As Long 141 Return GetDWord(VarPtr(x)) Xor _System_BSwap(GetDWord(VarPtr(y))) Xor GetDWord(VarPtr(width)) Xor _System_BSwap(GetDWord(VarPtr(height))) 138 142 End Function 139 143
Note:
See TracChangeset
for help on using the changeset viewer.