|
Description
|
Shows the circle specified by the Xc, Yc, X2 and Y2 parameters. as a dashed circle.
|
|
Syntax
|
[form.]DXFReader.ShowRubberCircle (Xc As Single, Yc As Single, X2 As Single, Y2 As Single, [StartAngle As Single], [EndAngle As Single])
|
|
Remarks
|
This method is usually called from the MouseMove event to provide feedback to the user while drawing a circle.The parameters for the ShowRubberCircle method are described below:
| Xc | X coordinate of the center of the circle | | Yc | Y coordinate of the center of the circle | | X2 | X coordinate of the end of the radius of the circle | | Y2 | Y coordinate of the end of the radius of the circle | | StartAngle | (Optional) When a partial circle is drawn, StartAngle specify (in degre) the beginning positions of the arc (Default value = 0) | | EndAngle | (Optional) When a partial circle is drawn, EndAngle specify (in degre) the end positions of the arc (Default value = 0) |
|