LineObject Class (Typed) | ![]() |
Namespace: XSharp.VO.SDK
The LineObject type exposes the following members.
Name | Description | |
---|---|---|
![]() | LineObject(Point, Point) |
Construct a LineObject object.
|
![]() | LineObject(Point, Point, Pen) |
Construct a LineObject object.
|
Name | Description | |
---|---|---|
![]() | BoundingBox |
A bounding box representing the smallest rectangle that completely encloses this LineObject object.
(Overrides BoundingBox.) |
![]() | Origin | (Overrides Origin.) |
![]() | Pen | |
![]() | RasterOperation | (Inherited from DrawObject.) |
![]() | Size | (Overrides Size.) |
Name | Description | |
---|---|---|
![]() | Destroy | Free memory resources allocated for a VObject object and its derived objects. (Inherited from VObject.) |
![]() | Draw | (Inherited from DrawObject.) |
![]() | Handle | (Inherited from DrawObject.) |
![]() | HitTest | (Inherited from DrawObject.) |
1METHOD Expose(oEvent) CLASS MyWindow 2LOCAL oLine AS OBJECT 3oLine := LineObject{Point{10,10},Point{20,20}} 4SELF:Draw(oLine)