A struct implementation that holds two Doubles for Width and Height to describe a size in two dimensional space.

Namespace: yWorks.Canvas.Geometry.Structs
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
[TypeConverterAttribute(typeof(SizeDConverter))]
[ObfuscationAttribute(StripAfterObfuscation = false, Exclude = true, 
	ApplyToMembers = true)]
public struct SizeD : ISize
Visual Basic
<TypeConverterAttribute(GetType(SizeDConverter))> _
<ObfuscationAttribute(StripAfterObfuscation := False, Exclude := True,  _
	ApplyToMembers := True)> _
Public Structure SizeD _
	Implements ISize

Remarks

This struct implements the ISize interface so that it can be used in methods that require that interface.

See Also