Click or drag to resize

DXFReaderNETControlAddMline Method

Adds a new multiple parallel lines (MLINE) to the current drawing.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public EntityObject AddMline(
	List<Vector2> Vertexes,
	bool Closed = true,
	double Scale = 20,
	short ACIColor = 256,
	string LayerName = "",
	string LineTypeName = ""
)

Parameters

Vertexes
Type: System.Collections.GenericListVector2
An list of vertexes
Closed (Optional)
Type: SystemBoolean
True for closed mline (Default value = true).
Scale (Optional)
Type: SystemDouble
The width of light weight polyline in drawing's units.
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 layer name. If omitted, or layername doesn't exist, , or layername doesn't exist, the CurrentLineTypeName will be used.

Return Value

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