Subtract the components of one PointF from another.
Syntax

[C#]

static PointF operator - (PointF a, PointF b);
static PointF operator - (PointF pt, Size sz);
static PointF operator - (PointF pt, SizeF sz);

[Visual Basic]

Shared Function Operator - (a As PointF, b As PointF) As PointF
Shared Function Operator - (pt As PointF, sz As Size) As PointF
Shared Function Operator - (pt As PointF, sz As SizeF) As PointF
Params
Name Description
a The PointF that should be subtracted from.
b The PointF that should be subtracted.
pt The point.
sz The size.
return A PointF containing the result.
Notes

None.

Example

None.