DXFReaderNETControlAddPoint Method
|
Adds a new point to the current drawing.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddPoint(
Vector3 Position,
short ACIColor = 256,
string LayerName = ""
)
Public Function AddPoint (
Position As Vector3,
Optional ACIColor As Short = 256,
Optional LayerName As String = ""
) As EntityObject
public:
EntityObject^ AddPoint(
Vector3 Position,
short ACIColor = 256,
String^ LayerName = L""
)
member AddPoint :
Position : Vector3 *
?ACIColor : int16 *
?LayerName : string
(* Defaults:
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
*)
-> EntityObject
METHOD AddPoint(
Position AS Vector3,
ACIColor AS SHORT := 256,
LayerName AS STRING := ""
) AS EntityObject
Parameters
- Position
- Type: DXFReaderNETVector3
The position of the point. - ACIColor (Optional)
- Type: SystemInt16
A number for 0 to 256 corresponding to the AutoCAD Color Index (0 = ByBlock; 256 = ByLayer. Default value = 256). - LayerName (Optional)
- Type: SystemString
The layer name. If omitted, or layername doesn't exist, the CurrentLayer will be used.
Return Value
Type:
EntityObjectThe new added
Point.
Remarks The entity is added to the active layout.
See Also