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