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

[C#]

static Size Subtract(Size sz1, Size sz2);

[Visual Basic]

Shared Function Subtract(sz1 As Size, sz2 As Size) As Size
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.