Table of Contents

Struct Area

Namespace
HP.LFT.SDK.TE
Assembly
HP.LFT.SDK.dll

Represents Terminal Emulator coordinates Top, Left, Bottom, Right.

public struct Area
Inherited Members

Constructors

Area(Position, Position)

Initializes a new instance of the Area structure.

public Area(Position topLeft, Position bottomRight)

Parameters

topLeft Position

Assigns values to the Top and Left fields.

bottomRight Position

Assigns values to the Bottom and Right fields.

Area(int, int, int, int)

Initializes a new instance of the Area structure.

public Area(int top, int left, int bottom, int right)

Parameters

top int

The top edge of this Area structure.

left int

The left edge of this Area structure.

bottom int

The bottom edge of this Area structure.

right int

The right edge of this Area structure.

Fields

Bottom

Bottom position of the rectangle.

public int Bottom

Field Value

int

Left

Left position of the rectangle.

public int Left

Field Value

int

Right

Right position of the rectangle.

public int Right

Field Value

int

Top

Top position of the rectangle.

public int Top

Field Value

int