Skip to main content
Version: 2025

VisRect

Namespace: PPJ.Runtime.Vis

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

Stores the four mutable SAL edges of a Windows-style rectangle.

public class VisRect : SalFunctionalClass

Example:

using PPJ.Runtime.Vis;

var bounds = new VisRect { Left = 10, Top = 20, Right = 110, Bottom = 70 };
PPJ.Runtime.SalNumber width = bounds.Right - bounds.Left;

Constructors

Instance member VisRect()

Initializes a new instance of VisRect.

Fields

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