XRect Constructor.
Syntax

[C#]

XRect();
XRect(double inWidth, double inHeight);
XRect(double inLeft, double inTop, double inWidth, double inHeight);
XRect(XRect inRect);

[Visual Basic]

Sub New()
Sub New(inWidth As Double, inHeight As Double)
Sub New(inLeft As Double, inTop As Double, inWidth As Double, inHeight As Double)
Sub New(inRect As XRect)
Params
Name Description
inWidth The rectangle width.
inHeight The rectangle height.
inLeft The rectangle left coordinate.
inTop The rectangle top coordinate.
inRect A rectangle to be copied.
Notes

If no parameter is specified, the default is 0,0,0,0.

Example

None.