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 Operator + ( _
	sz1 As SizeD, _
	sz2 As SizeD _
) As SizeD
C#
public static SizeD operator +(
	SizeD sz1,
	SizeD sz2
)
Visual C++
public:
static SizeD operator +(
	SizeD sz1, 
	SizeD sz2
)
JavaScript
JavaScript does not support overloaded operators.

Parameters

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

Return Value

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

See Also