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.
- C#
- VB.NET
public class VisRect : SalFunctionalClass
Public Class VisRect
Inherits 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
VisRect()
Initializes a new instance of VisRect.
Fields
| Name | Type | Description | Value |
|---|---|---|---|
| Bottom | SalNumber | The bottom edge coordinate, initially zero. | |
| Left | SalNumber | The left edge coordinate, initially zero. | |
| Right | SalNumber | The right edge coordinate, initially zero. | |
| Top | SalNumber | The top edge coordinate, initially zero. |