Subtracts the width and height of one SizeD structure from the width and height of another SizeD structure.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Function Subtract ( _
	sz1 As SizeD, _
	sz2 As SizeD _
) As SizeD
C#
public static SizeD Subtract(
	SizeD sz1,
	SizeD sz2
)
Visual C++
public:
static SizeD Subtract(
	SizeD sz1, 
	SizeD sz2
)
JavaScript
EGIS.ShapeFileLib.SizeD.subtract = function(sz1, sz2);

Parameters

sz1
Type: EGIS.ShapeFileLib..::..SizeD
The SizeD structure on the left side of the subtraction operator.
sz2
Type: EGIS.ShapeFileLib..::..SizeD
The SizeD structure on the right side of the subtraction operator.

Return Value

The SizeD that is a result of the subtraction operation.

See Also