Table of Contents

Class Region

Namespace
CLI.CliniCore.Service.Editor
Assembly
CLI.CliniCore.dll

Represents a rectangular region on the console

public record Region : IEquatable<Region>
Inheritance
Region
Implements
Inherited Members

Constructors

Region(int, int, int, int)

Represents a rectangular region on the console

public Region(int Left, int Top, int Width, int Height)

Parameters

Left int
Top int
Width int
Height int

Properties

Height

public int Height { get; init; }

Property Value

int

Left

public int Left { get; init; }

Property Value

int

Top

public int Top { get; init; }

Property Value

int

Width

public int Width { get; init; }

Property Value

int