Click or drag to resize

DXFReaderNETControlAddSlot Method

Adds a new lightweight polyline that forms a slot.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntax
public EntityObject AddSlot(
	Vector2 StartPoint,
	Vector2 EndPoint,
	short ACIColor = 256,
	string LayerName = "",
	string LineTypeName = "",
	bool AddToDrawing = true
)

Parameters

StartPoint
Type: DXFReaderNETVector2
Start point of slot.
EndPoint
Type: DXFReaderNETVector2
End point of slot.
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.
AddToDrawing (Optional)
Type: SystemBoolean
If true, the entity will be added to the drawing. Determines whether the created slot entity should actually be added to the current drawing or database. If false, the method just creates and returns the EntityObject without inserting it into the drawing. Useful when you want to preview, modify, or combine it with other entities before committing.

Return Value

Type: EntityObject
The new added Light Weight Polyline that forms a slot.
See Also