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 (Declaration)
<SerializableAttribute> _
<ComVisibleAttribute(True)> _
<TypeConverterAttribute(GetType(SizeDConverter))> _
Public Structure SizeD
C#
[SerializableAttribute]
[ComVisibleAttribute(true)]
[TypeConverterAttribute(typeof(SizeDConverter))]
public struct SizeD
Visual C++
[SerializableAttribute]
[ComVisibleAttribute(true)]
[TypeConverterAttribute(typeof(SizeDConverter))]
public value class SizeD

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