Table of Contents

Struct Dimension

Namespace
NMF.Glsp.Protocol.Types
Assembly
NMF.Glsp.dll

The Dimension of an object is composed of its width and height.

public readonly record struct Dimension : IEquatable<Dimension>
Implements
Inherited Members

Constructors

Dimension(double, double)

The Dimension of an object is composed of its width and height.

public Dimension(double Width, double Height)

Parameters

Width double

The width of an element.

Height double

the height of an element.

Properties

Height

the height of an element.

public double Height { get; init; }

Property Value

double

Width

The width of an element.

public double Width { get; init; }

Property Value

double