DXFReaderNETControlShowRubberBandEntities Method
|
Shows the entities specified by Entities parameter as a rubber band group of entities.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void ShowRubberBandEntities(
List<EntityObject> Entities,
Vector2 Position,
Color? Color = null,
RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandEntities (
Entities As List(Of EntityObject),
Position As Vector2,
Optional Color As Color? = Nothing,
Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandEntities(
List<EntityObject^>^ Entities,
Vector2 Position,
Nullable<Color> Color = nullptr,
RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandEntities :
Entities : List<EntityObject> *
Position : Vector2 *
?Color : Nullable<Color> *
?RubberBandType : RubberBandType
(* Defaults:
let _Color = defaultArg Color null
let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit
METHOD ShowRubberBandEntities(
Entities AS List<EntityObject>,
Position AS Vector2,
Color AS Nullable<Color> := NULL,
RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- Entities
- Type: System.Collections.GenericListEntityObject
A list of entities. - Position
- Type: DXFReaderNETVector2
The new position. - Color (Optional)
- Type: SystemNullableColor
The color of the rubber band if solid. If omitted the single entity color will be used. - RubberBandType (Optional)
- Type: DXFReaderNETRubberBandType
The type of rubber band: solid or dashed
Remarks This method can be used also to show a group of entities moving on the drawing with a smooth animation effect.
See Also