DXFReaderNETControlShowRubberBandCircle Method
|
Shows the circle specified by the CenterPoint and Radius parameters as a rubber band circle.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void ShowRubberBandCircle(
Vector2 CenterPoint,
double Radius,
Color? Color = null,
RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandCircle (
CenterPoint As Vector2,
Radius As Double,
Optional Color As Color? = Nothing,
Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandCircle(
Vector2 CenterPoint,
double Radius,
Nullable<Color> Color = nullptr,
RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandCircle :
CenterPoint : Vector2 *
Radius : float *
?Color : Nullable<Color> *
?RubberBandType : RubberBandType
(* Defaults:
let _Color = defaultArg Color null
let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit
METHOD ShowRubberBandCircle(
CenterPoint AS Vector2,
Radius AS REAL8,
Color AS Nullable<Color> := NULL,
RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- CenterPoint
- Type: DXFReaderNETVector2
Center of the circle. - Radius
- Type: SystemDouble
The radius of the circle. - Color (Optional)
- Type: SystemNullableColor
The color of the rubber band if solid. If omitted the CurrentColor will be used. - RubberBandType (Optional)
- Type: DXFReaderNETRubberBandType
The type of rubber band: solid or dashed
See Also