DXFReaderNETControlShowRubberBandArc Method
|
Shows the arc specified by the center point, radius, start angle and end angle parameters as a rubber band arc.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void ShowRubberBandArc(
Vector2 CenterPoint,
double Radius,
double StartAngle,
double EndAngle,
Color? Color = null,
RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandArc (
CenterPoint As Vector2,
Radius As Double,
StartAngle As Double,
EndAngle As Double,
Optional Color As Color? = Nothing,
Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandArc(
Vector2 CenterPoint,
double Radius,
double StartAngle,
double EndAngle,
Nullable<Color> Color = nullptr,
RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandArc :
CenterPoint : Vector2 *
Radius : float *
StartAngle : float *
EndAngle : float *
?Color : Nullable<Color> *
?RubberBandType : RubberBandType
(* Defaults:
let _Color = defaultArg Color null
let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit
METHOD ShowRubberBandArc(
CenterPoint AS Vector2,
Radius AS REAL8,
StartAngle AS REAL8,
EndAngle AS REAL8,
Color AS Nullable<Color> := NULL,
RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- CenterPoint
- Type: DXFReaderNETVector2
Center of the arc. - Radius
- Type: SystemDouble
End of the radius of the arc. - StartAngle
- Type: SystemDouble
Start angle of the arc. - EndAngle
- Type: SystemDouble
End angle the arc. - 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