L
Larry Serflaten
I am trying to add 2 points together, and I am not succeeding.
It appears the docs say I need a point and a size, but even that fails
in the copy of VS 2003 I have.
Exactly what are they trying to say here?
http://msdn.microsoft.com/library/d...rfSystemDrawingPointClassop_AdditionTopic.asp
Can't I use: pt1 = pt2 + pt3
Or do I need a size: pt1 = pt2 + sz3
The only thing that compiles, is as shown:
pt1 = Point.op_Addition(pt2, sz3)
But that doesn't show in Intellisense, what's going on?
LFS
It appears the docs say I need a point and a size, but even that fails
in the copy of VS 2003 I have.
Exactly what are they trying to say here?
http://msdn.microsoft.com/library/d...rfSystemDrawingPointClassop_AdditionTopic.asp
Can't I use: pt1 = pt2 + pt3
Or do I need a size: pt1 = pt2 + sz3
The only thing that compiles, is as shown:
pt1 = Point.op_Addition(pt2, sz3)
But that doesn't show in Intellisense, what's going on?
LFS