RectangleObject Class (Typed) |
Namespace: XSharp.VO.SDK
The RectangleObject type exposes the following members.
Name | Description | |
---|---|---|
RectangleObject(Usual, Usual, Usual, Usual) |
Construct a rectangle.
| |
RectangleObject(Point, Dimension, Pen, Brush) |
Construct a rectangle.
|
Name | Description | |
---|---|---|
BoundingBox | (Inherited from ShapeObject.) | |
Brush | (Inherited from ShapeObject.) | |
Origin | (Inherited from DrawObject.) | |
Pen | (Inherited from ShapeObject.) | |
RasterOperation | (Inherited from DrawObject.) | |
Size | (Inherited from ShapeObject.) |
Name | Description | |
---|---|---|
Destroy | (Inherited from ShapeObject.) | |
Draw | (Inherited from DrawObject.) | |
Handle | (Inherited from DrawObject.) | |
HitTest | (Inherited from DrawObject.) |
1METHOD Expose(oEvent) CLASS MyWindow 2LOCAL oRectangle AS OBJECT 3oRectangle := RectangleObject{Point{10,10},; 4Dimension{20,40}} 5SELF:Draw(oRectangle)