Click or drag to resize

DXFReaderNETControlAddTrace Method

Adds a new trace to the current drawing using current trace witdh.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public EntityObject AddTrace(
	Vector3 StartPoint,
	Vector3 EndPoint,
	short ACIColor = 256,
	string LayerName = "",
	string LineTypeName = ""
)

Parameters

StartPoint
Type: DXFReaderNETVector3
The start position of the trace.
EndPoint
Type: DXFReaderNETVector3
The end position of the trace.
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.
LineTypeName (Optional)
Type: SystemString
The linetype name. If omitted, or linetype doesn't exist, the CurrentLineTypeName will be used.

Return Value

Type: EntityObject
The new added Trace.
Remarks
The entity is added to the active layout.
See Also