DXFReaderNETControlShowRubberBandBox Method (Vector2, Vector2, NullableColor, RubberBandType)
|
Shows the rectangle specified by the StartPoint and EndPoint parameters as a rubber band rectangle.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void ShowRubberBandBox(
Vector2 StartPoint,
Vector2 EndPoint,
Color? Color = null,
RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandBox (
StartPoint As Vector2,
EndPoint As Vector2,
Optional Color As Color? = Nothing,
Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandBox(
Vector2 StartPoint,
Vector2 EndPoint,
Nullable<Color> Color = nullptr,
RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandBox :
StartPoint : Vector2 *
EndPoint : Vector2 *
?Color : Nullable<Color> *
?RubberBandType : RubberBandType
(* Defaults:
let _Color = defaultArg Color null
let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit
METHOD ShowRubberBandBox(
StartPoint AS Vector2,
EndPoint AS Vector2,
Color AS Nullable<Color> := NULL,
RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- StartPoint
- Type: DXFReaderNETVector2
The lower-left corner of the window. - EndPoint
- Type: DXFReaderNETVector2
The upper-right corner of the window. - 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