Stores an ordered pair of double-precision floating-point numbers, typically the width and height of a rectangle.

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

Syntax

Visual Basic
<SerializableAttribute> _
<TypeConverterAttribute(GetType(SizeDConverter))> _
<ComVisibleAttribute(True)> _
Public Structure SizeD
C#
[SerializableAttribute]
[TypeConverterAttribute(typeof(SizeDConverter))]
[ComVisibleAttribute(true)]
public struct SizeD
Visual C++
[SerializableAttribute]
[TypeConverterAttribute(typeof(SizeDConverter))]
[ComVisibleAttribute(true)]
public value class SizeD
JavaScript
JavaScript supports the use of structures, but not the declaration of new ones.

Remarks

This structure is essentially the same as the System.Drawing.SizeF structure but uses double-precision floating point numbers, which are needed for accuracy in GIS applications

See Also