DXFReaderNETControlDrawPoint Method
|
Draws a point on the control.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic void DrawPoint(
Pen Pen,
Vector2 Position,
bool Store = false
)
Public Sub DrawPoint (
Pen As Pen,
Position As Vector2,
Optional Store As Boolean = false
)
public:
void DrawPoint(
Pen^ Pen,
Vector2 Position,
bool Store = false
)
member DrawPoint :
Pen : Pen *
Position : Vector2 *
?Store : bool
(* Defaults:
let _Store = defaultArg Store false
*)
-> unit
METHOD DrawPoint(
Pen AS Pen,
Position AS Vector2,
Store AS LOGIC := FALSE
) AS VOID
Parameters
- Pen
- Type: System.DrawingPen
The pen object to render the element - Position
- Type: DXFReaderNETVector2
Position of the point in drawing's units. - Store (Optional)
- Type: SystemBoolean
If set to true the element is drawn again after e refresh.
RemarksThis method adds a point to the drawing without modifying the drawing database. Can be used for for temporary visualizations, such as highlighting or previewing elements, without making permanent changes to the DXF data.
See Also