Gets a new SizeF by subtracting the coordinates of two supplied sizes from each other.
Syntax

[C#]

static SizeF operator - (SizeF sz1, SizeF sz2);

[Visual Basic]

Shared Function Operator - (sz1 As SizeF, sz2 As SizeF) As SizeF
Params
Name Description
sz1 The size on the left of the subtraction operator.
sz2 The size on the right of the subtraction operator.
return The new resultant size.
Notes

None.

Example

None.