DXFReaderNETControlShowRubberBandLinearDimension Method (Vector2, Vector2, Vector2, Double, NullableColor, RubberBandType)
|
Shows the distance specified by the StartPoint and EndPoint parameters as a rubber band linear dimension.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void ShowRubberBandLinearDimension(
Vector2 StartPoint,
Vector2 EndPoint,
Vector2 Position,
double Rotation = 0,
Color? Color = null,
RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandLinearDimension (
StartPoint As Vector2,
EndPoint As Vector2,
Position As Vector2,
Optional Rotation As Double = 0,
Optional Color As Color? = Nothing,
Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandLinearDimension(
Vector2 StartPoint,
Vector2 EndPoint,
Vector2 Position,
double Rotation = 0,
Nullable<Color> Color = nullptr,
RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandLinearDimension :
StartPoint : Vector2 *
EndPoint : Vector2 *
Position : Vector2 *
?Rotation : float *
?Color : Nullable<Color> *
?RubberBandType : RubberBandType
(* Defaults:
let _Rotation = defaultArg Rotation 0
let _Color = defaultArg Color null
let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit
METHOD ShowRubberBandLinearDimension(
StartPoint AS Vector2,
EndPoint AS Vector2,
Position AS Vector2,
Rotation AS REAL8 := 0,
Color AS Nullable<Color> := NULL,
RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- StartPoint
- Type: DXFReaderNETVector2
First reference point of the dimension. - EndPoint
- Type: DXFReaderNETVector2
Second reference point of the dimension. - Position
- Type: DXFReaderNETVector2
Point position of the dimension line. - Rotation (Optional)
- Type: SystemDouble
Rotation in degrees of the dimension line. - 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