Adds the width and height of one SizeD structure to the width and height of another SizeD structure.

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

Syntax

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

Parameters

sz1
Type: EGIS.ShapeFileLib..::..SizeD
The first SizeD to add.
sz2
Type: EGIS.ShapeFileLib..::..SizeD
The second SizeD to add.

Return Value

A SizeD structure that is the result of the addition operation.

See Also