Table of Contents

Struct Area

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

Namespace: HP.LFT.SDK.TE
Assembly: HP.LFT.SDK.dll
Syntax
public struct Area

Constructors

Area(Position, Position)

Initializes a new instance of the Area structure.

Declaration
public Area(Position topLeft, Position bottomRight)
Parameters
Type Name Description
Position topLeft

Assigns values to the Top and Left fields.

Position bottomRight

Assigns values to the Bottom and Right fields.

Area(int, int, int, int)

Initializes a new instance of the Area structure.

Declaration
public Area(int top, int left, int bottom, int right)
Parameters
Type Name Description
int top

The top edge of this Area structure.

int left

The left edge of this Area structure.

int bottom

The bottom edge of this Area structure.

int right

The right edge of this Area structure.

Fields

Bottom

Bottom position of the rectangle.

Declaration
public int Bottom
Field Value
Type Description
int

Left

Left position of the rectangle.

Declaration
public int Left
Field Value
Type Description
int

Right

Right position of the rectangle.

Declaration
public int Right
Field Value
Type Description
int

Top

Top position of the rectangle.

Declaration
public int Top
Field Value
Type Description
int