Table of Contents

Class Bounds

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

The bounds are the position (x, y) and dimension (width, height) of an object. As such the Bounds type extends both Point and Dimension.

public class Bounds
Inheritance
Bounds
Inherited Members

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

X

The abscissa of the point.

public double X { get; init; }

Property Value

double

Y

The ordinate of the point.

public double Y { get; init; }

Property Value

double