Skip to main content

VisRect

Namespace: PPJ.Runtime.Vis

Assembly: PPJ.Runtime.Vis.50 (5.0.0.0)

Represents a rectangle by its left, top, right, and bottom coordinates.

public class VisRect : SalFunctionalClass

This is a mutable SAL functional class, not a native Windows structure. Its fields store the supplied coordinates without enforcing geometric constraints.

Example:

var value = new PPJ.Runtime.Vis.VisRect { Left = 10, Top = 20, Right = 110, Bottom = 70 };

Constructors

Instance member VisRect()

Initializes a new instance of VisRect.

Fields

NameTypeDescriptionValue
BottomSalNumberThe coordinate of the bottom edge, initially zero.
LeftSalNumberThe coordinate of the left edge, initially zero.
RightSalNumberThe coordinate of the right edge, initially zero.
TopSalNumberThe coordinate of the top edge, initially zero.