Changeset 223 for Include/Classes/System/Drawing/Point.ab
- Timestamp:
- Apr 30, 2007, 1:56:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Drawing/Point.ab
r212 r223 4 4 #define __SYSTEM_DRAWING_POINT_AB__ 5 5 6 # include <Classes/System/Drawing/PointF.ab>7 # include <Classes/System/Drawing/Size.ab>8 # include <Classes/System/Drawing/SizeF.ab>6 #require <Classes/System/Drawing/PointF.ab> 7 #require <Classes/System/Drawing/Size.ab> 8 #require <Classes/System/Drawing/SizeF.ab> 9 9 10 10 Class Point … … 20 20 End Sub 21 21 22 Sub Point(pt As Point) 23 x = pt.x 24 y = pt.y 25 End Sub 26 27 Sub Point(ByRef sz As Size) 22 Sub Point(sz As Size) 28 23 x = sz.Width 29 24 y = sz.Height … … 54 49 Return x = 0 And y = 0 55 50 End Function 56 /* 57 Sub Operator = (ByRef pt As Point) 58 x = pt.x 59 y = pt.y 60 End Sub 61 */ 51 62 52 Function Operator + (pt As Point) As Point 63 53 Return Add(This, pt)
Note:
See TracChangeset
for help on using the changeset viewer.